Syntax for formula with a checkbox
Options
Need help with syntax for a formula for counts.
Goal: Give a count where If STATUS field contains string value "new" and where a checkbox named External is checked.
Formula: =COUNTIFS(Status:Status, "New", [External:External, "True"])
Currently getting an error: #UNPARSEABLE
Best Answer
-
Try
=COUNTIFS(Status:Status, "New", External:External, 1)
check boxes are 0 or 1 and brackets should not go around the second statement
Answers
-
Try
=COUNTIFS(Status:Status, "New", External:External, 1)
check boxes are 0 or 1 and brackets should not go around the second statement
-
It worked - Thank You @VBAGuru !!!
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!