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.
Trying to change RYG based on status of a group of rows and Subtasks
so i have rows that turn red green or yellow based on progress i would like a master progress since the rows are normmaly collaped that shows over all status of a section
i have code but its not working
=IF(COUNTIF(Status18:Status25) = 0, "Red", IF(COUNTIF(Status18:Status25) = 100, "Green" , IF(COUNTIF(Status18:Status25) < 100, "Yellow")))
This is a task subtask request
if no Sub-tasks are even started or a Sub-task is marked on hold keep Main task red, if some Sub -Yasks are marked Completed, or In Progress make Main task Yellow, if all Sub-tasks are completed make main task Green
Comments
-
The formula you are looking for is as follows:
=IF(COUNTIF(Status18:Status25, "Red") > 0, "Red", IF(COUNTIF(Status18:Status25, "Green") = COUNT(Status18:Status25), "Green", "Yellow"))
You're close, but the nested formulae you are using are incorrect. For example if you try '=COUNTIF(Status18:Status25) = 0' you'll get an error, and this is the first logic test in your IF statement. The coloured balls are not identified with a value, but with the values "Red", "Yellow" and "Green". So you need to test against these values.
-
See also related question at:
https://community.smartsheet.com/discussion/automating-parent-row-based-ryg-children-rows
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives