Link to home
Start Free TrialLog in
Avatar of mak345
mak345Flag for United States of America

asked on

ARRAY IN SUMIFS WITH "<>" CRITERIA

I have a SUMIFS formula where I would to like to have one of the criteria be an array of values that a particular range cannot be equal to.  I undertsnad how to do this when I only want to include an array of values, but I am having trouble doing the opposite.

=+SUMIFS(data!$F:$F,data!$C:$C,$A35,data!$D:$D,$D35,data!$G:$G,$B35,data!$I:$I,"<>{0068999,1000000,3300305}",data!$B:$B,"<="""&MONTH(F$27))

**Please note the values in the array are text, not numbers.

I can make it work with a SUMPRODUCT formula, but I wanted to see if this was possible as well.

Thanks for any help!
Avatar of NBVC
NBVC
Flag of Canada image

Unfortunately with SUMIFS you can't use the grouping method for "AND" checks (i.e. check that column is not equal to criteria1 AND column is not equal to criteria2, etc.... it can be used for checking "OR" checks.

You will need 3 separate SUMIFS added together (one for each separate column I check.  

Also, SUMIFS will convert Text string numbers to numbers and will look for those in column I.  So it will look for the number 68999 and not find it amongst numbers/text like 0006899

Sumproduct would be the better choice for that situation.  You will just need to try to limit the ranges or use Dynamic Named Ranges.
ASKER CERTIFIED SOLUTION
Avatar of Rob Henson
Rob Henson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I don't think you need 3 separate SUMIFS, you can simply use 3 separate conditions in a single SUMIFS, e.g.

=SUMIFS(data!$F:$F,data!$C:$C,$A35,data!$D:$D,$D35,data!$G:$G,$B35,data!$I:$I,"<>0068999",data!$I:$I,"<>1000000",data!$I:$I,"<>3300305",data!$B:$B,"<="&MONTH(F$27))

If you want to exclude a longer list of values then Rob's method may suit better

regards, barry
Avatar of mak345

ASKER

This turned out to be the best option.  When I attempted the SUMIFS formula with multiple "<>" criteria it ended up including all values.  SUMPRODUCT works, but I prefer the use of SUMIFS.