IF DATETIMEPARSE([End_date], "%Y-%m-%d") >= DATETIMEADD(DATETIMENOW(), -7, "days") THEN IF [Involvement] = "No Spend" OR [Involvement] = "Support only" THEN "Not required"
ELSEIF [Attachments] = "Budget" THEN "Completed" Else "Missing"
ENDIF
Solved! Go to Solution.
There are two IF statements, but only one "ELSE" and one "ENDIF".
As shown in the picture, I recommend you to change "THEN IF" to "ELSEIF" in the middle.
IF DATETIMEPARSE([End_date], "%Y-%m-%d") >= DATETIMEADD(DATETIMENOW(), -7, "days")
AND ([Involvement] = "No Spend" OR [Involvement] = "Support only") THEN "Not required" ELSEIF
DATETIMEPARSE([End_date], "%Y-%m-%d") >= DATETIMEADD(DATETIMENOW(), -7, "days")
AND [Attachments] = "Budget" THEN "Completed" Else "Missing"
ENDIF
Thank you! ELSEIF breaks the code for whatever reason. Any other suggestion?
I revised what I posted a little while ago. Would you like to try again?
It worked! Thank you so much
User | Count |
---|---|
19 | |
14 | |
13 | |
9 | |
8 |