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
Check out the Formula Handbook template!