I'm working with call center data. I have call volumes for multiple groups by date, using the TEXT function to return the day of week. Like so:
06/03/19 Mon Group1 1000
06/03/19 Mon Group2 1400
06/04/19 Tue Group1 1100
06/04/19 Tue Group2 1500
06/10/19 Mon Group1 1300
06/10/19 Mon Group2 1000
06/11/19 Tue Group1 1100
06/11/19 Tue Group2 1600
I pull all of the data into a pivot table, and I want to calculate the AVERAGE total calls for Mondays, Tuesdays, etc. The average in the pivot table calculates the above based on 4 Mondays and 4 Tuesdays. So, I get a Monday average of 1175, when the true average is 2350.
06/03/19 Mon Group1 1000
06/03/19 Mon Group2 1400
06/04/19 Tue Group1 1100
06/04/19 Tue Group2 1500
06/10/19 Mon Group1 1300
06/10/19 Mon Group2 1000
06/11/19 Tue Group1 1100
06/11/19 Tue Group2 1600
I pull all of the data into a pivot table, and I want to calculate the AVERAGE total calls for Mondays, Tuesdays, etc. The average in the pivot table calculates the above based on 4 Mondays and 4 Tuesdays. So, I get a Monday average of 1175, when the true average is 2350.