I have dates from two columns, Expected % Complete, and % Complete which I want to use, and populate the Status Column (Dropdown) using Formulas:
The Dropdown options are " Not Started", "Behind", "On Track", and "Complete". I tried using the below formula
=IF(AND([% Complete]@row = "100%", ([Expected % Complete]@row < "100%")),"Complete", IF(AND([% Complete]@row >= [Expected % Complete]@row, ([% Complete]@row > "0%")), "On
Track", IF(AND([% Complete]@row < [Expected % Complete]@row, ([% Complete]@row > "0%")),
"Behind", "Not Started")))
How to fix this ?