Skip to main content

Hello!

When I export my list data to excel the Workflow Column  upon filtering shows 2 or 5. What are these numbers referring to? My assumption is tasks that are InProgress and other tasks that are Completed status. However how do I know if 2 is referring to the InProgress tasks or Completed Tasks?

 

Thanks

Rency

I did some digging and found that these codes are come from an ReviewRoutingState enumeration included in the Microsoft.Office.Workflow.Routing assembly. I thought it would be a lookup somewhere, but it is a little more defined.

 

NotStarted = 0

FailedOnStart = 1

InProgress = 2

ErrorOccurred = 3

StoppedByUser = 4

Completed = 5

FailedOnStartRetrying = 6

ErrorOccurredRetrying = 7

ViewQueryOverflow = 8

Canceled = 15

Approved = 16

Rejected = 17


Thank you soooooo much Andrew!! This is so helpful happy.png


Reply