Hello,
I'm working in Nintex 3.3.1.0 on SharePoint 2013.
I have a list of items and I need to create a workflow what will send a notification if three multitext fields have not been updated for more than 3 days since the status of the item was set on "Accepted" .
I was thinking on starting the workflow when the status is set on Accepted, store the values of the three fields in a variable , pause the workflow for 3 days and then Set a condition to check if the values of the fields are equal to the variable or if they are empty.
I created something like :
If field1 equals field1Var
or
field1 is empty
>send notification.
This works.
When I try with :
If field1 equals field1Var
and
field2 equals field2Var
or
field1 is empty
and
field2 is empty
this doesn't work.
Do you have any suggestions how to check if all three notification are either equal to their corresponding fieldVar or empty ?
Thank you in advance.