Populating parents based on child, two parameters
Hello,
I am trying to figure out how to put the following into a formula:
If all values in child rows are "Complete" or "Complete w/ Issues" then populate parent as "Complete"
otherwise...
If any values in child rows are "Incomplete" or Blank then populate parent as "Incomplete"
The column I am working in is a dropdown with only 3 possible values mentioned above aside from blank values; "Complete", "Complete w/ Issues", "Incomplete"
I've tried multiple formulas from questions that seemed similar with no luck. I won't post as I don't think they are even close.
Thank you.
Best Answer
-
Try something like this:
=IF(COUNTIFS(CHILDREN(), OR(@cell = "Incomplete", @cell = ""))> 0, "Incomplete", "Complete")
Answers
-
Try something like this:
=IF(COUNTIFS(CHILDREN(), OR(@cell = "Incomplete", @cell = ""))> 0, "Incomplete", "Complete")
-
That did it. Thank you. I was just a bit off from one of my previous attempts!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!