I am designing a workflow that has a calculated column used with an IF-Else condition. The problem I am having is after I change the column that calculation is attached to it does not move forward.
Calculated column:
=ISBLANK[MarkSmithApproval])
yes/no
Stage: Mark Smith Approval
Email: Me
then Wait for MarkSmithCalc to equal No
Transition to stage
If current Item:Mark Smith Approval equals Approved
(After I change, does not move forward to either stage)
Go to Jan Approval
Else
Go to PIF Not Approved
Are you sure that ISBLANK returns “Yes” and “No” strings? This would ensure that:
=IF(ISBLANK[MarkSmithApproval]), “Yes”, “No”)