I am very new to excel as it pertains to consolidating data and have limited experience with VBA. I have never used pivot tables. I understand that I may need to adjust my table in order to accommodate a solution but prefer not to and am not sure where to start.
In the sample below:
There are six possible non-numeric, standardized values for each cell in Column F (for the sake of discussion, I have used different types of fruit to represent these various values).
For each phone contact, a date stamp is generated in column E, and a standardized entry is made in column F.
At any given time, there are approx 20 worksheets in the workbook. Worksheets are both added and
omitted on a monthly basis.The headers of every worksheet are identical.
There are up to 500 lines in each worksheet. Thus, the date ranges in each sheet vary.
The dates in Column E appear in order beginning with the earliest date in Cell E2 on Sheet 1 and the Latest Date in Cell E500 on sheet 20.
I need a solution that will capture the number of apples, bananas, oranges, grapes, lemons, and pears "noted" on each day. Ideally each sheet should have its own respective summary either at the top or bottom of column F as well as a master summary of all sheets at the end of the workbook (or in another workbook). I'm looking for a "dashboard" of sorts. Can this be done? How?
Edit: The code below should now arrange the totals by date.
This should properly total each page in the manner you are looking for, but it will not create a Grand Total for all pages. You could implement a large array in this code to store all the values between pages, or possibly create a new function using VLookup and some For loops, but it would be rather complex. If possible, I would try to make a formula on your Grand Total sheet to pull the data in.