Hi Everyone,
I created a conditional statement where if the Receive Date or the Disposed Date > 0, then under the column "Group", it should output Null. It is working for Disposed Date, but not for Received Date. I have attached screenshots of the workflow, output, and conditional statements. Any help would be greatly appreciated.
Best,
Chirag Gandhi
Solved! Go to Solution.
Your statement is not built correctly, it should be...
IF [ReceivedDate] > "0" or [DisposedDate] > "0" then NULL else THE REST endif
Thank you. It worked now. Not sure why it wasn't working because I used this same statement in another workflow and it worked perfectly.