Countifs with multiple criteria in one column
Hello,
Trying to use countifs with the first column having multiple criteria. I need the count in {B3, BRIDGE, C2B Subfleet}, =319 or "3HF". I am counting for a metrics widget so I do not want to separate the count.
=COUNTIFS({B3, BRIDGE, C2B Subfleet}, =319, {B3, BRIDGE, C2B In}, >=TODAY(), {B3, BRIDGE, C2B In}, <=TODAY(7))
Thank you in advance, Garrett
Best Answer
-
You would use something like this:
=COUNTIFS({B3, BRIDGE, C2B Subfleet}, OR(@cell = "319", @cell = "3HF"), {B3, BRIDGE, C2B In}, >=TODAY(), {B3, BRIDGE, C2B In}, <=TODAY(7))
Answers
-
You would use something like this:
=COUNTIFS({B3, BRIDGE, C2B Subfleet}, OR(@cell = "319", @cell = "3HF"), {B3, BRIDGE, C2B In}, >=TODAY(), {B3, BRIDGE, C2B In}, <=TODAY(7))
-
Thank you Paul I appreciate the response. I did figure it out late last night to the exact thing you did. Still learning how it all works.
-
Help Article Resources
Categories
Check out the Formula Handbook template!