I have the following formula:
=IF([% Complete]@row = 0, "Not Started", IF(AND([% Complete]@row > 0, [% Complete]@row < 1), "In Progress", IF([% Complete]@row = 1, "Complete")))
If I start a task that and percentage isn't 0.5% or greater, it shows the project as not started.
It appears top line in project has default calculation that rounds up or down. Is there a way to get it to round up to nearest 1% or a work around?