Hello,
Below is a formula I want to use where column BM = project completion date, cells V4 and Y4 are 1/1/16 and 12/31/16, respectively, column C is checking the program type (text value) in cell B98, and the total budget $s I want to conditionally sum are column W.
I want to sum only the total budget from column W if the project completion date in column BM falls within 2016 using cell reference dates that can easily be updated in 2017 and moving forward by entering the first day and last day of the year I desire to review.
The below formula returns nothing, no error, just nothing, and I think it has to do with the date parameters, but could certainly use some assistance if anyone is willing! Thanks in advance for your time!
Below is a formula I want to use where column BM = project completion date, cells V4 and Y4 are 1/1/16 and 12/31/16, respectively, column C is checking the program type (text value) in cell B98, and the total budget $s I want to conditionally sum are column W.
I want to sum only the total budget from column W if the project completion date in column BM falls within 2016 using cell reference dates that can easily be updated in 2017 and moving forward by entering the first day and last day of the year I desire to review.
The below formula returns nothing, no error, just nothing, and I think it has to do with the date parameters, but could certainly use some assistance if anyone is willing! Thanks in advance for your time!
Code:
=SUMPRODUCT(--('BI Report Data-Only Drop'!$BM$2:$BM$15000>=$V$4),--('BI Report Data-Only Drop'!$BM$2:$BM$15000<=$Y$4),--('BI Report Data-Only Drop'!$C$2:$C$15000=$B98),--('BI Report Data-Only Drop'!$B$2:$B$15000="Not Active"),'BI Report Data-Only Drop'!$W$2:$W$15000)