Sumifs with multiple matching criteria in target range

I've been trying different things with this formula, but to no avail.
Here is what I am trying to capture.
If the status in (Financial Master Range 4) is either, "committed" or "obligated", I want the sum of these two amounts with those statuses from (Financial tracker Range 5) to appear.
=SUMIFS({Financial Tracker Master Range 5}, {Financial Tracker Master Range 1}, [Column12]$162, {Financial Tracker Master Range 4}, "committed", {Financial Tracker Master Range 4}, "obligated", {Financial Tracker Master Range 12}, $[Column7]@row)
What am I doing wrong?
Best Answer
-
You would need to use an OR function like so:
=SUMIFS({Financial Tracker Master Range 5}, {Financial Tracker Master Range 1}, [Column12]$162, {Financial Tracker Master Range 4}, OR(@cell = "committed", @cell = "obligated"), {Financial Tracker Master Range 12}, $[Column7]@row)
Answers
-
You would need to use an OR function like so:
=SUMIFS({Financial Tracker Master Range 5}, {Financial Tracker Master Range 1}, [Column12]$162, {Financial Tracker Master Range 4}, OR(@cell = "committed", @cell = "obligated"), {Financial Tracker Master Range 12}, $[Column7]@row)
-
Thanks Paul! This worked!
Help Article Resources
Categories
Check out the Formula Handbook template!