Can I use 2 formulas in 1 cell/column?
Hello! I'm stuck trying to put to formulas into one column. Here's the scenario.
I have multiple projects with multiple subtasks.
When the Status column is updated to "Completed" I would like the Progress column to update to 100%.
I've successfully completed this step with the formula:
=IF(Status1 = "Completed", "100%") in the Progress column.
Now, I'd like the average % of the completed subtasks to display in the parent row in the Progress column.
So, if I I have Parent Task 1 with 4 Subtasks, and 2 are moved to Completed, those 2 subtasks should have 100% in the Progress column and the Parent Task should have 50% in the Progress column.
Is this possible?
This is ideally how I'd like it to look.
Best Answers
-
With some additional fiddling I figured out how to keep the In Progress blank and make it look just like you wanted:
Progress formula (column set as percent):
=IFERROR(SUM(CHILDREN(Progress@row)) / COUNT(CHILDREN(Status@row)), IF(Status@row = "In Progress", "", IF(Status@row = "Completed", 1)))
-
Blank is perfect, thank you!!! This is exactly what I needed!!!
Answers
-
I can do it but you need "In Progress" to show 0% for your AVG function to work properly.
Progress column formula (column formatted as %):
=IFERROR(AVG(CHILDREN(Progress@row)), IF(Status@row = "In Progress", 0, IF(Status@row = "Completed", 1)))
-
With some additional fiddling I figured out how to keep the In Progress blank and make it look just like you wanted:
Progress formula (column set as percent):
=IFERROR(SUM(CHILDREN(Progress@row)) / COUNT(CHILDREN(Status@row)), IF(Status@row = "In Progress", "", IF(Status@row = "Completed", 1)))
-
Blank is perfect, thank you!!! This is exactly what I needed!!!
-
@Mike TV follow up question, if you don't mind. If the Status Column = In Progress, is there a way I can type it in manually?
-
Which column & row are you wanting to manually type something into? Also, what are you wanting to type into whichever location?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 412 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 140 Just for fun
- 57 Community Job Board
- 460 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!