Grouping or Filtering by Workflow status

  • 4 October 2010
  • 1 reply
  • 5 views

Badge +3

As each user creates an item in a Sharepoint list and it fires a workflow instance, in the list appears a column named as the workflow with its status (In progress, Completed).


We would like to create Views to filter or group items by their status.


But using the text "In Progress" o "Completed" as Filters doesn't shows anything... and grouping by that column either. 


Any idea how we can achieve this?


1 reply

Badge +3

All you need to do is filtering by its integer value instead by the string:



 StatusValue 
 Not Started0 
 Failed on Start1 
 In Progress2 
 Error Occurred3 
 Canceled4 
 Completed5 
 Failed on Start (retrying)6 
 Error Occurred (retrying)7 
 Canceled15
 Approved16 
 Rejected17

Reply