Multiple SUMIFS formula

gohawks222

New Member
Joined
Feb 2, 2016
Messages
21
Does anyone see a problem with this formula? Values in E2 and F2 are dates, and using those dates as criteria it should sum the values. It's returning zero right now when it should be returning a value.

Code:
=IFERROR(((ABS(((SUMIFS(Orders!$B2:$BJ2, Orders!$B$1:$BJ$1, ">="&$E$2, Orders!$B$1:$BJ$1, "<"&$F$2))-(SUMIFS(Forecast!$B2:$BJ2, Forecast!$B$1:$BJ$1, ">="&$E$2, Forecast!$B$1:$BJ$1, "<="&$F$2)))/(SUMIFS(Orders!$B2:$BJ2, Orders!$B$1:$BJ$1, ">="&$E$2, Orders!$B$1:$BJ$1, "<"&$F$2))))*((SUMIFS(Orders!$B2:$BJ2, Orders!$B$1:$BJ$1, ">="&$E$2, Orders!$B$1:$BJ$1, "<"&$F$2))))/((SUMIFS(Orders!$B2:$BJ2, Orders!$B$1:$BJ$1, ">="&$E$2, Orders!$B$1:$BJ$1, "<"&$F$2))),0)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Check to ensure all your dates are setup as date values and not as text, as this could be a reason for the formula being confused.

Try adding zero to all your references of E2 and F2 in the formula so that Excel explicitly converts them to date values e.g. SUMIFS(Orders!$B2:$BJ2, Orders!$B$1:$BJ$1, ">="&$E$2+0, Orders!$B$1:$BJ$1, "<"&$F$2+0)

This will certainly help if any cells in the criteria range are blank.

If you take out the IFERROR wrapper does the formula just return the value zero, or some error value such as #VALUE, or #DIV/0?
 
Upvote 0

Forum statistics

Threads
1,215,842
Messages
6,127,230
Members
449,371
Latest member
strawberrish

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top