Change a Cell Value (Checkbox)
I want to change a header row cell value (checkbox) if any of the rows below in another column (in the same worksheet) has check mark or not.
Best Answer
-
In that case just use a full column reference.
=IF(COUNTIFS([Other Column]:[Other Column], @cell = 1)> 0, 1)
Answers
-
If you are using indentations/hierarchy then you can use the CHILDREN function inside of a COUNTIFS.
=IF(COUNTIFS(CHILDREN([Other Column]@row), @cell = 1)> 0, 1)
-
Thanks, Paul, but the row are not a child of the header row.
-
In that case just use a full column reference.
=IF(COUNTIFS([Other Column]:[Other Column], @cell = 1)> 0, 1)
-
Thanks Paul, that worked
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.7K Get Help
- 474 Global Discussions
- 201 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!