Sumifs Array Help

dmarzean

New Member
Joined
Apr 20, 2008
Messages
21
I have the following that I have been using on a commission payroll sheet. problem is, there have been some changes and I now need to sum instead of count due to negative values being added to the data sheet.

=IF(COUNTIFS('Work Orders'!$B$2:$B$9987,"=" &[@[Work Order]],'Work Orders'!$I$2:$I$9987,">-2",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]])>0,COUNTIFS('Work Orders'!$B$2:$B$9987,"=" & [@[Work Order]],'Work Orders'!$I$2:$I$9987,">-2",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]]),"")

Here is the spreadsheet http://integsalesjobs.com/wp-content/uploads/2014/01/01-14-az-PAYROLL.xlsm
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Okay, I think I get it:
=IF(COUNTIFS('Work Orders'!$B$2:$B$9987,"=" &[@[Work Order]],'Work Orders'!$I$2:$I$9987,">-2",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]])>0,COUNTIFS('Work Orders'!$B$2:$B$9987,"=" & [@[Work Order]],'Work Orders'!$I$2:$I$9987,">-2",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]]),"")

Would be:
=IF(SUMIFS('Work Orders'!G$2:G$9987,'Work Orders'!$B$2:$B$9987,"=" &[@[Work Order]],'Work Orders'!$G$2:$G$9987,">0",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]])>0,COUNTIFS('Work Orders'!$B$2:$B$9987,"=" & [@[Work Order]],'Work Orders'!$G$2:$G$9987,">0",'Work Orders'!$E$2:$E$9987,"=" &[@[Last Name]]),"")

So basically the only thing that changes is: COUNTIFS -> SUMIFS, and just after SUMIFS( you have to insert what you'd like to sum, in this case: SUMIFS('Work Orders'!G$2:G$9987, (assuming that's TV Starter).

Good luck
 
Upvote 0

Forum statistics

Threads
1,214,391
Messages
6,119,244
Members
448,879
Latest member
VanGirl

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