Hi Everyone,
I'm trying to write a formula to mark a status column one of the following based on a % complete column:
Complete If 100%
Not Started If 0%
In Progress If 0<>100%
Empty if blank
I'm using:
=IF([% Complete]1 = "100", "Complete", IF([% Complete]1 = "0", "Not Started", IF([% Complete]1 = "", "", "In Progress")))
When the % column is 0%, I get "Not Started" without issue. However, when I mark 100% it always gives "In Progress". I've tried changing the formula to use 100, 100%, "100%" but none of those work.
Anyone know how to get an IF function to do something based off a 100% value?