0
votes

I am trying to write a formula in Excel that will compare 2015 totals to 2016 totals and projections. If there is a value in the rows for January, February, March and April, I want the 2015 sum of those same months. Then the same for the projected

Screen capture of excel file

enter image description here

1
Please see how to ask.findwindow

1 Answers

0
votes

I like to use SUMPRODUCT() for something like this:

Projected:

=SUMPRODUCT(($B$5:$B$16<>"")*$A$5:$A$16)

Actual:

=SUMPRODUCT(($B$5:$B$16<>"")*$D$5:$D$16)

enter image description here