Hello,
I am using the following formula to determine the expected complete % based on dates in the project sheet. I am setting this up as a template so would like the formula to exist in the column even though the rest of the row data is blank, awaiting the user to populate. Once they populate it, it would automatically apply the expected % complete. . . Today I get an error: #Divide By Zero
Expected % complete Formula:
=IF(Start@row <= TODAY(), MIN((TODAY() - Start@row) / Duration@row, 1), 0)
I have tried adding is blank to start of the formula, but then get different errors each time.
The same issue applies for the column next to it, Status is driven through a formula, and i would like to say if % complete is blank or Start date is blank, then status = Blank until there is data.
Status Formula today:
=IF([% Complete]@row = 1, "Complete", IF(AND([% Complete]@row >= [Expected % Complete]@row, ([% Complete]@row > "0%")), "On Track", IF(AND([% Complete]@row < [Expected % Complete]@row, ([% Complete]@row > "0%")), "Behind", IF(AND(Start@row < TODAY(), ([% Complete]@row = 0)), "Not Started/Behind", "Not Started"))))
Thank you,
AmyD