SUMIFS with multiple criteria, ignoring blank cells in table data.

Status
Not open for further replies.

rings

New Member
Joined
Feb 27, 2018
Messages
3
Hi all. I have searched the forum for a solution to this but it's not coming to me. I have two tables, one is a plan, and the other is a report. In the plan I have Work Orders, Team names and planned hours by week. In the report (references a pivot table elsewhere) I have a work order, and hours charged by team. In the pivot table, I can filter out certain teams, which will then leave that section of the table blank (Row 14 in his example).What I'd like to be able to do is pull the planned hours base on the what's on the report. If the report cell is blank, ignore it in the SUM of planned hours, else, include it. Here's my data:

A1B1C1D1E1F1
A2Plan
A3Work OrderTeam30-Sep-187-Oct-1814-Oct-18
A4123Team 15.008.009.00
A5123Team 210.0010.008.00
A6123Team 35.008.0010.00
A7456Team 18.004.0012.00
A8456Team 212.0010.006.00
A9456Team 36.007.004.00
A10
A11
A12ReportWork Order123
A13Team30-Sep-187-Oct-1814-Oct-18
A14Team 18.005.008.00
A15Team 2
A16Team 37.007.009.00
A17ACTUALS15.00
12.0017.00
A18PLAN5.00
8.000.00
A19123

<colgroup><col width="64" style="width: 48pt;"><colgroup><col width="80" style="width: 60pt; mso-width-source: userset; mso-width-alt: 2925;"><colgroup><col width="79" style="width: 59pt; mso-width-source: userset; mso-width-alt: 2889;"><colgroup><col width="68" style="width: 51pt; mso-width-source: userset; mso-width-alt: 2486;" span="2"><colgroup><col width="66" style="width: 50pt; mso-width-source: userset; mso-width-alt: 2413;"><tbody>
</tbody>

In cell C18, I have only one Team criteria:
SUMIFS(INDEX($D$4:$F$9,,MATCH(C$13,$D$3:$F$3,0)),$B$4:$B$9,$D$12,$C$4:$C$9,IF(C$14="","<>",$B$14))

In cell D18, I have two Team criteria, one of which is blank. If I populate the blank team data, the formula does not work:
SUMIFS(INDEX($D$4:$F$9,,MATCH(D$13,$D$3:$F$3,0)),$B$4:$B$9,$D$12,$C$4:$C$9,IF(D$14="","<>",$B$14),$C$4:$C$9,IF(D$15="","<>",$B$15))

And last, in cell E8, I tried having all tree Team criteria, and as expected, it doesn't work either:
SUMIFS(INDEX($D$4:$F$9,,MATCH(E$13,$D$3:$F$3,0)),$B$4:$B$9,$D$12,$C$4:$C$9,IF(E$14="","<>",$B$14),$C$4:$C$9,IF(E$15="","<>",$B$15),$C$4:$C$9,IF(E$16="","<>",$B$16))

Is this something really simple that I'm missing? Thanks in advance.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Duplicate https://www.mrexcel.com/forum/excel...criteria-ignoring-blank-cells-table-data.html

Please do not post the same question multiple times. All clarifications, follow-ups, and bumps should be posted back to the original thread.
Per forum rules, posts of a duplicate nature will be locked or deleted (rule 12 here: Forum Rules).

Note that sometimes posts from new users require Moderator approval before you can see them on the public forums. When this happens, you should see a message to that effect when you try to post it.
Please be patient and do not attempt to post the question again.
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,215,063
Messages
6,122,930
Members
449,094
Latest member
teemeren

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