Checkbox Range Formula
Comments
-
You can use something like this although there is probably a cleaner way to do the formula:
=IF(AND([Check Box]1 = 1, [Check Box]2 = 1, [Check Box]3 = 1, [Check Box]4 = 1, [Check Box]5 = 1), 1, 0)
-
=IF(COUNTIFS([Check Box]1:[Check Box]5, 1) = 5, 1)
It basically counts all of the boxes within the range that are checked. If that count comes to 5, then it will check the box.
-
This worked! Thank you so much
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!