Getting Work flow Status of Custom Workflow in SharePoint 2010
lstImplItem.Workflows[0]. IsCompleted ; ---> this single line gives the whether the workflow is completed are not it gives only completed status, if you want to use canelled , inprogress it dosent work below one is the best There is nothing changes you just Keep Your WorkFlow Name to that string Workflow name.. no changes... protected string GetWorkflowStatus ( SPListItem itm ) { string workflowName = " Multiple Tasks Workflow "; //name of the workflow you have pass string statusText = string.Empty; try ...