Friday, March 18, 2011

Nintex Workflow Status Values

When nintex workflow is running, it adds a column to the list/library and shows status like “In Progress”, “Canceled , “Completed” etc.
Sometimes you may need to read those values and perform certain logic based on them.
E.g., if Status=”In Progress” then do something.
Only problem is the criteria will never be met. Because the actual workflow status values are numbers. Below are the details.
5 = Completed
4 = Cancelled
3 = Error Occurred
2 = In Progress
So the right way will be “If status=2 then do something”.
Enjoy.

No comments:

Post a Comment