IF OR Statement For % of completion
I am trying to write a formula that returns the status of the project based on a column labeled as "% Completion", if the % of completion is 100% then status should say complete. if "% of completion" is 10% then status should be in progress.
This is what I have come up with but it's giving me "INCORRECT ARGUMENT"
=IFERROR([% Complete]@row = 1, "Complete"), [% Complete]@row>0.1,"In Progress")
Answers
-
IFERROR Works a little differently. Usually combined with more complications.
For something simpler you would use IF
=IF([% Complete]@row = 1, "Complete", "In Progress")
This formula will make anything other than 100% return "In Progress"
-
Thanks @Dan W !
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!