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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,215,029
Messages
6,122,760
Members
449,095
Latest member
m_smith_solihull

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