CountIf Function
Options

ejacksonBPT
ββ
I want to count the number of each option in this example; Change Router, Upgrade, Disconnect. My Objective column is set up as a drop down with allow multiple values enabled.
My formula is only calculating Row 5, because that is the only row with only one value. How do I get my formula to calculate each drop down option if more than one value is in the cell.
My formula is
=COUNTIF({New Sheet 1 Range 1}, [Primary Column]@row)
Best Answer
-
You need to use a HAS function when dealing with multi-select columns.
=COUNTIF({New Sheet 1 Range 1}, HAS(@cell, [Primary Column]@row))
Answers
-
You need to use a HAS function when dealing with multi-select columns.
=COUNTIF({New Sheet 1 Range 1}, HAS(@cell, [Primary Column]@row))
-
Thank you!
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!