Good morning everyone,
I'm new to Smartsheets and have been really enjoying the functionalities and automations. I'm trying to set up an automated Health / Progress status and keep getting a "#UNPARSEABLE" error. I've looked through my code and can't figure it out.... Can someone take a look and help me see what I'm missing?
Desired Outcomes:
Green - Donation Agreement Execution Date OR Donation Completion Date>0
Yellow - Legal Review Submitted OR Legal Review Complete / Out for Signature>0 AND Donation Agreement Execution Date OR Donation Completion Date=0
Blue - Donation Start Date>0, Everything else blank or =0
I have entered this part yet, but...
Red - Due Date>Today()
Here's my code so far...
=IF(OR([Donation Completion Date]@row>0, [Donation Agreement Execution Date]@row>0), “Green”, IF(AND([Legal Review Submitted]@row>0, [Donation Completion Date]@row=0, [Donation Agreement Execution Date]@row=0), “Yellow”, IF(AND([Donation Start Date]@row>0, [Legal Review Submitted]@row=0, [Legal Review Complete / Out for Signature]@row=0, [Donation Agreement Execution Date]@row=0, [Donation Completion Date]@row=0), “Blue”)))