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")