2

The purpose of this formula is to sum the values in K if values from column B are 20x, 200, 702, 201 and also if values in column E is only IS and also values in column L read dam. I am receiving a value of 0 and I know that the value is more than 0 I think it's my array that I am not using correctly. Below is my formula I'm currently using and a screenshot of the data.

=SUMIFS($K$2:$K$5000,$B$2:$B$5000,"*20X*","200","702","201"},$E$2:$E$5000,"IS",$L$2:$L$5000,"*dam*")

DATA

enter image description here

7
  • 4
    wrap it in a SUM(): =SUM(SUMIFS($K$2:$K$5000,$B$2:$B$5000,"*20X*","200","702","201"},$E$2:$E$5000,"IS",$L$2:$L$5000,"*dam*")) Commented Feb 2, 2017 at 20:11
  • @ScottCraner damn you're good with these formulas Commented Feb 2, 2017 at 20:12
  • @ScottCraner tried that and it still showing a zero value Commented Feb 2, 2017 at 20:13
  • @Luis I tried =SUM(SUMIFS($K$2:$K$5000,$B$2:$B$5000,{"20X","200","702","201"},$E$2:$E$5000,"IS",$L$2:$L$5000,"dam")) without the wild-card * , and it worked for me Commented Feb 2, 2017 at 20:14
  • 1
    @Luis in the sample of data you provided I don't see any matches. I don't see any "IS" in Column E, or any "dam" in Column L. are you sure you have any ? Commented Feb 2, 2017 at 20:20

1 Answer 1

1

There may be problems copying the formula from the Comments. This works:

=SUM(SUMIFS($K$2:$K$5000,$B$2:$B$5000,{"*20X*","200","702","201"},$E$2:$E$5000,"IS",$L$2:$L$5000,"*dam*"))

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.