I am trying to create a simple IF function for Status in a project plan template. The formula has no error but the required value is not populating based on the formula
=IF([% Complete]@row = "0%", "Not Started", IF([% Complete]@row > "0%", "In Progress", IF([% Complete]@row = "100%", "Complete")))
For example if I put 0% in % Complete cell then I should see Not started auto-populate in the Status Column. Its not populating Not Started...just is blank