SUMIFS function with ability to return blank if cell is blank
I am trying to establish a formula that will SUMIFS when multiple criteria is met yet when there is none of the criteria is met, leave cell blank. The formula that I have used in the past included the "IFERROR" function yet it doesn't work
=IFERROR(SUMIFS({Battery Scorecard Raw Data 2}, {Location}, "Richmond, KY", {Wk}, "35"), "")
Best Answer
-
=IFERROR(if(SUMIFS({Battery Scorecard Raw Data 2}, {Location}, "Richmond, KY", {Wk}, "35") =0, "", SUMIFS({Battery Scorecard Raw Data 2}, {Location}, "Richmond, KY", {Wk}, "35")),"")
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
=IFERROR(if(SUMIFS({Battery Scorecard Raw Data 2}, {Location}, "Richmond, KY", {Wk}, "35") =0, "", SUMIFS({Battery Scorecard Raw Data 2}, {Location}, "Richmond, KY", {Wk}, "35")),"")
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
It worked perfectly! Thanks Mark!
Help Article Resources
Categories
Check out the Formula Handbook template!