Can % Complete return a "COMPLETE" Value in Status
I am working with a construction schedule and the Project Manager manually enters the % Complete. I created another column called status and what I would like to do is when the PM marks 100%, the status column automatically reads Complete. And if they mark anything under 100%, the status column reads Incomplete. Is there a formula for this? It seems like it should be easy to figure out but I'm clearly missing something.
Answers
-
Try this:
=IF([% Complete]@row = 1, "Complete", "Incomplete")
-
This worked perfectly!!!!! thank you so much!
-
Happy to help. 👍️
-
Paul,
Could you tell me if there is a formula that could read:
if current start is in the past & % complete is less than 100%, the return value could be "past due"
-
That would be a nested IF statement.
=IF([% Complete]@row = 1, "Complete", IF([Current Start]@row< TODAY(), "Past Due", "Incomplete"))
-
Apparently I need to put you on Payroll!!! Thanks again!
-
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!