Hi, can I get help to know why I am getting #UNPARSEABLE for this formula?

=IF(OR(Done671 = 1, [% Complete]671 = 1), "Green", IF(OR(TODAY() > [Due Date]671, [Team Issue]671 = "Major issue (Red)"), "Red", IF(OR(TODAY() > [Due Date]671 - 5, [Team Issue]671 = "Minor issue (Amber)”, TODAY(INT(Duration671 * (1 - [% Complete]671))) > [Due Date]671), "Yellow", "Green"))))


Please note I have ensure all the Column Names are in accordance.


Thank you!

Best Answer

Answers

  • Andrée Starå
    Andrée Starå ✭✭✭✭✭✭

    Hi Anthony,

    Try something like this.

    Do you want it to show Yellow as default?

    =IF(OR(Done@row = 1; [% Complete]@row = 1); "Green"; IF(OR(ISDATE([Due Date]@row); [Team Issue]@row = "Major Issue (Red)"); IF(OR(TODAY() > [Due Date]@row; [Team Issue]@row = "Major issue (Red)"); "Red"); IF(OR(TODAY() > [Due Date]@row - 5; [Team Issue]@row = "Minor issue (Amber)"; TODAY(INT(Duration@row * (1 - [% Complete]@row))) > [Due Date]@row); "Yellow"; "Green")))

    The same version but with the below changes for your and others convenience.

    =IF(OR(Done@row = 1, [% Complete]@row = 1), "Green", IF(OR(ISDATE([Due Date]@row), [Team Issue]@row = "Major Issue (Red)"), IF(OR(TODAY() > [Due Date]@row, [Team Issue]@row = "Major issue (Red)"), "Red"), IF(OR(TODAY() > [Due Date]@row - 5, [Team Issue]@row = "Minor issue (Amber)", TODAY(INT(Duration@row * (1 - [% Complete]@row))) > [Due Date]@row), "Yellow", "Green")))

    Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.

    Did it work?

    I hope that helps!

    Have a fantastic week!

    Best,

    Andrée Starå

    Workflow Consultant / CEO @ WORK BOLD

    ✅Did my post help answer your question or solve your problem? Please help the Community by marking it as the accepted answer. It will make it easier for others to find a solution or help to answer!

    SMARTSHEET EXPERT CONSULTANT & PARTNER

    Andrée Starå | Workflow Consultant / CEO @ WORK BOLD

    W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35

    Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.

  • Hi Andree,

    Thank you very much for the feedback, it works accordingly! Sorry for the long overdue response as it was lost in the mailbox.