How to show last passed child on parent row?
I have been trying different ways to show last passed "gate" of a project. The project can have from none to few child rows. There is a column with passed gates as tick marks.
Now I want to show the last passed gate text side by the parent row. I haven't figured out how to do this automatically.
Any help is welcome!
Best Answer
-
Try something like this:
=IF(COUNT(CHILDREN(Project@row)) <> 0, INDEX(CHILDREN(Project@row), COUNTIFS(CHILDREN(Done@row), @cell = 1)))
Answers
-
Try something like this:
=IF(COUNT(CHILDREN(Project@row)) <> 0, INDEX(CHILDREN(Project@row), COUNTIFS(CHILDREN(Done@row), @cell = 1)))
-
@Paul Newcome , thanks that works perfectly!
I tested something similar but couldn't get my formula working, it didn't include "@cell=1"
-
One small issue: if there is no passed gates there is an error:
-
Try this:
=IFERROR(IF(COUNT(CHILDREN(Project@row)) <> 0, INDEX(CHILDREN(Project@row), COUNTIFS(CHILDREN(Done@row), @cell = 1))), INDEX(CHILDREN(Project@row), 1))
Help Article Resources
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
Check out the Formula Handbook template!