Help with Formulas
Hello!
I’ve been using Smartsheets for a while now, but am new to building them. I am having trouble working with formulas to identify current status of my tasks. I’ve searched the community and have tried out suggestions based on previous responses, but I’m still stuck.
I’d be grateful for help sorting out the following:
- What formula should I use to enable status health balls for each individual line (lines 5-7) to auto populate based on current status and overall due date?
- What formula should I use to enable the parent line (line 4) status health ball to auto populate based on the overall status of the individual lines within the group?
Ultimately, I'd like the status of each parent item to populate a report that I've created.
Thanks very much!
Comments
-
You would use nested IF statements for both.
For the child rows, it would look something like this...
=IF(Criteria set 1 is true, "Red", IF(Criteria set 2 is true, "Yellow", IF(Criteria set 3 is true, "Green")))
For the parent rows it would look something like this...
=IF(CONTAINS("Red", CHILDREN()), "Red", IF(CONTAINS("Yellow", CHILDREN()), "Yellow", IF(COUNTIFS(CHILDREN(), "Green") = COUNT(CHILDREN()), "Green")))
.
The specifics would be based on your exact criteria.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!