Formula that updates % Complete based on Status
I need a formula that updates the "Percent Complete" column based on the "Crossing Agreement Status" column.
Owner Not Identified = 0%
Owner Identified = 25%
Owner Contacted = 50%
Owner Deferred = 50%
Agreement in Negotiations = 75%
Agreement Executed = 100%
Example: If the crossing agreement status is marked as owner contacted the percent complete should automatically update to 50%.
Best Answer
-
Hi @swaldon2,
This formula should do what you're after:
=IF([Crossing Agreement Status]@row = "Owner Not Identified", 0, IF([Crossing Agreement Status]@row = "Owner Identified", 0.25, IF(OR([Crossing Agreement Status]@row = "Owner Contacted", [Crossing Agreement Status]@row = "Owner Deferred"), 0.5, IF([Crossing Agreement Status]@row = "Agreement in Negotiations", 0.75, IF([Crossing Agreement Status]@row = "Agreement Executed", 1)))))
Sample:
Hope this helps, but any questions etc. then just post! 😊
Answers
-
Hi @swaldon2,
This formula should do what you're after:
=IF([Crossing Agreement Status]@row = "Owner Not Identified", 0, IF([Crossing Agreement Status]@row = "Owner Identified", 0.25, IF(OR([Crossing Agreement Status]@row = "Owner Contacted", [Crossing Agreement Status]@row = "Owner Deferred"), 0.5, IF([Crossing Agreement Status]@row = "Agreement in Negotiations", 0.75, IF([Crossing Agreement Status]@row = "Agreement Executed", 1)))))
Sample:
Hope this helps, but any questions etc. then just post! 😊
-
That worked, thank you!
-
That worked, thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!