kensor81
New Member
Hi,
I'm sitting having a problem I can't get my head around for the time being.
Hopefully someone can push me in the right direction or help with some brainstorming.
I have one table with source data in called “Table 1”:
I need to sum the number of docs for each date like this:
And then calculate the average with in the months, for this example it will only be January like this: ((394 + 420)/2 = 407)
The source table will be filled in each week on same day of the week, but I need to report the average by month.
The reporting was supposed to be by chart with 12 month perspective.
I had hoped to do this by the help of Pivot Table and Pivot Chart, and not to manually update this each month.
But I'm not sure how to go from the Source Table to the Pivot Table to the Pivot Chart.
If I use sum on the column called “Number of Docs.:” it will show correctly the sum for each date, but if then group further on months it will be wrong as I then need to have the average within that month.
I hope someone is able to give me some good pointers
Thx,
Kenneth
I'm sitting having a problem I can't get my head around for the time being.
Hopefully someone can push me in the right direction or help with some brainstorming.
I have one table with source data in called “Table 1”:
Code:
Date: Project: Number of Docs.:
03.01.2014 5243 79
03.01.2014 5333 81
03.01.2014 5210 115
03.01.2014 5524 21
03.01.2014 5601 98
10.01.2014 5243 81
10.01.2014 5333 89
10.01.2014 5210 121
10.01.2014 5524 21
10.01.2014 5601 98
10.01.2014 5605 10
I need to sum the number of docs for each date like this:
Code:
Date: Sum Number of Docs.:
03.01.2014 394
10.01.2014 420
And then calculate the average with in the months, for this example it will only be January like this: ((394 + 420)/2 = 407)
Code:
Month: Sum Number of Docs.:
January 407
The source table will be filled in each week on same day of the week, but I need to report the average by month.
The reporting was supposed to be by chart with 12 month perspective.
I had hoped to do this by the help of Pivot Table and Pivot Chart, and not to manually update this each month.
But I'm not sure how to go from the Source Table to the Pivot Table to the Pivot Chart.
If I use sum on the column called “Number of Docs.:” it will show correctly the sum for each date, but if then group further on months it will be wrong as I then need to have the average within that month.
I hope someone is able to give me some good pointers
Thx,
Kenneth