Countif/And/Or

Smarty
✭✭✭
Trying to Count, by State, if multiple criteria is met. I think I am close....but don't have something in the right place! Any help is appreciated!
=COUNTIFS(AND({State}, "FL", ({Activity}, OR(@cell = "ASA", @cell = "ASA (Multiple Systems)"))))
Answers
-
Hi @Smarty ,
You can do this as a sum of the 2 conditions:
=COUNTIFS({State},"FL", {Activity},"ASA")+COUNTIFS({State},"FL", {Activity},"ASA (Multiple Systems")
Or combine them into a single statement:
=COUNTIFS({State}, "FL", {Activity}, OR(@cell = "ASA", @cell = "ASA (Multiple Systems)"))
Hope this helps!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!