Estimating monthly totals from overlapping period between years

pminamdar

New Member
Joined
Nov 16, 2015
Messages
2
Hello All,

Pardon if my question is already posted.

I have a daily time series of flow volumes at 37 sites ( 37 columns) between 2004 to 2016. I need a monthly sum between summer months (September to March) throughout entire period.
For example, a monthly total from September 2004 to March 2005.

I have created a pivot table which provides me monthly sums per year. However, I am struggling to get summer totals between years (04/05, 05/06, and so on).

Is there any easy way of doing this?

Thanks.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hello All,

Pardon if my question is already posted.

I have a daily time series of flow volumes at 37 sites ( 37 columns) between 2004 to 2016. I need a monthly sum between summer months (September to March) throughout entire period.
For example, a monthly total from September 2004 to March 2005.

I have created a pivot table which provides me monthly sums per year. However, I am struggling to get summer totals between years (04/05, 05/06, and so on).

Is there any easy way of doing this?

Thanks.

assuming the dates are in column A, let's add a helper column, let's call it Summer Year using this formula:

=IF(MONTH($A2)<=3,YEAR($A2)-1,IF(MONTH($A2)>=9,YEAR($A2),""))

then drag this field into the pivot table..

for Summer Year = 2014, that should be from 9/1/2004 to 3/31/2005
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top