SUMIFS with Multiple Criteria

AllisterB

Board Regular
Joined
Feb 22, 2019
Messages
120
Office Version
  1. 365
Platform
  1. Windows
I and trying to get the total of values in a table that belong to Dept A and have Codes after 9990.000.
the Result I get is 0 but it should be 50.

What is wrong with my SUMIFS formula?

Thank You

Book1
GHIJK
4
5CodeDeptValue
69910.100A10
79920.200B20
89940.001B30
99990.000C40
109991.000A50
11
12
130
Sheet1
Cell Formulas
RangeFormula
H13H13=SUMIFS(Table1[Value],Table1[Dept],"A",Table1[Code],">9990.000")
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
My bet is that your H6:H10 range is text, so the codes are numbers saved as text, and the SUMIFS is looking for numeric values. You can try something like this:

Excel Formula:
=SUMPRODUCT(Table1[Value],--(Table1[Dept]="A"),--(Table1[Code]+0>9990))
 
Upvote 0
My bet is that your H6:H10 range is text, so the codes are numbers saved as text, and the SUMIFS is looking for numeric values...
It looks like this can be circumvented by inserting an apostrophe in front of the 9990.000:

Code:
=SUMIFS(Table1[Value],Table1[Dept],"A",Table1[Code],">'9990.000")
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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