Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
Formula for a dependancy
Comments
-
Hello,
If you'd like for a Status column to be a Green ball only if all 5 checkboxes are checked, there are a few different ways that a formula could be written to do this. The smallest formula would look something like this:
=IF(COUNTIF([Check1]1:[Check5]1, 1) = 5, "Green")
This counts the checkboxes that are checked in row 1 for the columns "Check1" through "Check5", and if it equals 5 returns "Green". If this is placed in a Symbols type column with the RYG balls chosen, a green ball will show only when all 5 checkboxes are set. If you have a different number of checkboxes, you can change the 5 to whatever number needed.
As I mentioned above there are other ways to write this formula, but this is the most compact and efficient way.
-
Ann,
Also be aware that Robert's assumption is that the 5 columns are contiguous and/or there are are no intervening Checkbox type columns that might be checked and no Text/Number type columns that might contain a value equal to 1.
Craig
-
Thank You.
Second Question
Is it possible to build onto that formula that if something is unchecked it would be red?
So If all checked green, if unchecked red?
-
Hello,
Craig is absolutely right, about the assumption made in my previous formula. Thanks Craig, I should have specified. For this formula to work how it is, the checkbox columns must be contiguous.
As for the status being red unless all checkboxes are checked, you can add a value if false to the end so that it looks something like this:
=IF(COUNTIF([Check1]1:[Check5]1, 1) = 5, "Green", "Red")
Here's our help center article with more information on the structure of an IF() function (https://help.smartsheet.com/function/if).
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives