Sum values for YTD

six4680

New Member
Joined
Mar 22, 2004
Messages
2
This one's probably simple, but...
I have a spreadsheet that contains dates in Column A formatted as dates, entered as 3/19/2004. In column B and subsequent columns, I have numerical data that is summed at the bottom. The current formula looks like this... =SUM(B91:B143). It totals the data for 52 weeks since data is entered each week. The question is, is there a way to have this automatically adjust the SUM function to include only the last 52 weeks/cells, rather than adjusting the function parameters each week? Any help is appreciated.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Something like this perhaps:

=SUM(OFFSET(B1,MATCH(9.99999999999999E+307,B:B)-1,0,-52,1))
 
Upvote 0
six4680 said:
...In column B and subsequent columns, I have numerical data that is summed at the bottom...

Since you do the required summing in the same column as the column that houses the relevant figures, we can't alas use the Offset formula 2rrs posted...

Define LastN as referring to 52 via the option Insert|Name|Define.

In B144 enter:

=SUM(INDEX(B:B,ROW()-1):INDEX(B:B,ROW()-1-MIN(LastN-1,COUNT(B1:INDEX(B:B,ROW()-1)))))
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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