Running Total Formula Help

Copper Contributor

OK. Hopefully I can explain this...

I have daily sales in Column A which get added each day.

 

I also have plan sales numbers in Column D. They are prefilled in for the month.

 

I would like column D to do a running total to compare to the data in column A. So, if sales data is added to column A, then that row would be added to the subtotal of column D.

 

Along time ago, an excel wizard friend built me this formula, but I don't have the file anymore. I have the basic SUMIF built, I just don't know how to tell it to add in the next row each time.

 

Does that make any sense? Help...

1 Reply

@mgosling Whatever formula you already have, copy it down to the last row of the month. If the daily sales numbers are blank the running total will remain constant. If you don't want to show a running total for a day that has no sales in column A, you may wrap the formula in an IF statement, like:

=IF(isblank(A1),"-",<your formula>)

 Demonstrated in the attached file. If this doesn't make any sense, please upload a copy of your file, after deleting any confidential information.