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
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 454 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 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!