I'm not too sure if this is possible in an excel formula or if I will need to write VBA to make this happen, but essentially I want the '?' cells to sum all the cells below it until it reaches another Header in Column A. Right now I have the basics of the =IF formula looking like this:
=IF(OFFSET(INDIRECT(ADDRESS(ROW(), COLUMN())),0,-1) ISBLANK, null, SUMIF())
But I am stuck on the sum portion. Right now the formula is looking 1 cell to the left; seeing if blank, then do nothing or if not blank (header) then it needs to sum all cells below until it reaches another header.
A very weird question but hopefully what i'm asking is making sense. Any thoughts would be appreciated. Thanks.

