Formula Question
Hello:
Below is a formula that was written to change the verbage in the "Status" column based on the % Complete Column.
The original formula was =IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress", IF([% Complete]@row < 1, "In Progress"))) and it worked just fine.
Then I realized that when the status of the ball changes to red or yellow that I did not have anything written for when the ball changes to "Red" , "Past Due" and when the ball changes to "Yellow", "At Risk." So, I added to the formula the follow (in bold)
=IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", IF([% Complete]@row > 0, "In Progress", IF([% Complete]@row < 1, "In Progress", IF([Schedule Health]@row = "Yellow", "At Risk"))))) and it returned a #UNPARSEABLE. Is this because I am referencing another column within my original formula? Can you reference another column in this type of formula and if show how should it be written?
Any help would be greatly appreciated.
Best,
Anthony D'Ambrosio
Best Answer
-
Here is my suggestion...
=IF([Schedule Health]@row = "Red", "Past Due", IF([Schedule Health]@row = "Yellow", "At Risk", IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "In Progress"))))
Answers
-
Here is my suggestion...
=IF([Schedule Health]@row = "Red", "Past Due", IF([Schedule Health]@row = "Yellow", "At Risk", IF([% Complete]@row = 0, "Not Started", IF([% Complete]@row = 1, "Complete", "In Progress"))))
-
@Paul Newcome thank you! that worked.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!