Forum Discussion
Cumulative Totals and SumProduct Formulas
Hi Karen,
The main difficulty is the calculation with the months in row B. Instead of the "January", you should use 01/01/2018 and then format this cell as "mmmm".
Afterwards, it will be easier to work with MONTH().
Attached a suggestion for your file.
If you have any comments, please do not hesitate.
Kr
TK
Thank you for the information. I have added another column to help with the counts and they are working. I was told to add YTD totals columns but unsure of the formula to calculate them. The monthly % is working. But the YTD % is not. Any Suggestions?
- Tinn KeeperMar 05, 2018Brass ContributorHi Karen,
In cell D3, add the formula =SUM($C$3:C3) and copy it in the rest of the column.
In cell F3, use the formula =SUM($E$3:E3) and copy it in the rest of the column.
And in column H (YTD % Total), use the formula =F3/D3.
I suppose this is the simplest way to do it.
Kr
TK- Karen HeinrichMar 05, 2018Copper Contributor
Thank you for the information. I am using the following formula in a different worksheet =IF(C3=0,"",SUM(C$3:C3)) for YTD totals But I still need to have it show zeros if that is what the total is for that cell. Is that possible?
- Tinn KeeperMar 05, 2018Brass ContributorJust replace the "" by zero ;)
=IF(C3=0,0,SUM(C$3:C3))