I am working on a project where I have to take large amounts of data, analyze it to find sections that are not zero, and prepare entries to correct those. I have 46K+ lines of data that rolls up into approximately 4000 lines in a pivot table. The problem is that to create the entries I need three fields + the amount. This is an example of what the Problem looks like:
PO Account Project Amount
10 12345 98765 100
12346 98765 -148
12347 98765 48
The problem is that I need the PO # (10 in the example above) to show for all rows of data so that when I copy it to a different spreadsheet to feed it into our system I don't have to manually cut and paste the PO # down for all 4000+ PO's. Any help would be greatly appreciated.
Also any way to suppress zero values in this same project would be greatly appreciated. With the same data as an example 46K lines, rolling into 4000 Pivot Table rows, only say ~856 of those rows don't sum to zero. Is there an easy way to eleminate or suppress all the rows that sum to zero so that I don't have to do that process manually?
I am familiar with VBA for Excel and Macros, but I haven't worked much with Pivot tables, if someone has a better solution using VBA I would appreciate it (or a way to do what I am asking with the raw data using VB - group based on one column (Ref#) and show three other columns (PO, Account, Project), plus the sum of the amounts. This is something that I have to do with large amounts of data on a regular basis so I would really appreciate any help. If more info is required let me know.
Thanks,
Chris
PO Account Project Amount
10 12345 98765 100
12346 98765 -148
12347 98765 48
The problem is that I need the PO # (10 in the example above) to show for all rows of data so that when I copy it to a different spreadsheet to feed it into our system I don't have to manually cut and paste the PO # down for all 4000+ PO's. Any help would be greatly appreciated.
Also any way to suppress zero values in this same project would be greatly appreciated. With the same data as an example 46K lines, rolling into 4000 Pivot Table rows, only say ~856 of those rows don't sum to zero. Is there an easy way to eleminate or suppress all the rows that sum to zero so that I don't have to do that process manually?
I am familiar with VBA for Excel and Macros, but I haven't worked much with Pivot tables, if someone has a better solution using VBA I would appreciate it (or a way to do what I am asking with the raw data using VB - group based on one column (Ref#) and show three other columns (PO, Account, Project), plus the sum of the amounts. This is something that I have to do with large amounts of data on a regular basis so I would really appreciate any help. If more info is required let me know.
Thanks,
Chris