Hi, I am trying to calculate % complete with an IF formula because if it is marked complete I want it to say 100% and the current formula is tell me it is 3,098% complete because start and end date are in the past.
Old formula: =(TODAY() - [Start Date]@row) / ([End Date]@row - [Start Date]@row)
What I am trying to write but won’t work: =IF(Status@row= “Complete”, 100%, (=TODAY()-[Start Date]@row/[End Date]@row-[Start Date]@row))
Help! How can I get this to work??