I'm still not sure what you're trying to calculate, but I can give you a couple of pointers. For percent complete not equalling 0, you should use != for not equals, rather than <>. So it should read... IF(Percent Complete!=100, You also have 12 open brackets "(" and only 10 closing brackets ")" - for the correct syntax, you should have an even number of both. For example, if you remove the first IF statement with two opening brackets, the rest of the formula validates (although I don't know if it's calculating correctly). IF(($$NOW>Planned Start Date, IF($$NOW 0,IF(Percent Complete!=100, PROD(DIV(ABS((WEEKDAYDIFF($$NOW,Planned Start Date))),(DIV(Duration,480))),100,0),100),0),100) Barry Buchanan Work Management Australia
Question
Hello- I am trying to calculate a expected percentage complete for each task biased solely on current date and duration of the task. I got this single IF statement to work: CONCAT(IF(($$NOW>Planned Start Date),((PROD(DIV((ABS(WEEKDAYDIFF($$NOW,Planned Start Date))),(DIV(Duration,480))),100))),0),"%") Now I need to add a criteria that if the current date is greater than the Planned Completion Date then put the value 100 in AND only do the calculation IF the task task duration is greater than 0 and if the task percent complete is not equal to 100. I've tried the following but something isn't adding up.
IF(($$NOW>Planned Start Date, IF($$NOW 0,IF(Percent Complete<>100, PROD(DIV(ABS((WEEKDAYDIFF($$NOW,Planned Start Date))),(DIV(Duration,480))),100,0),100),0),100) Any help would be most appreciated! Thank you, Mollie Mollie Shatek JLL
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.