In my sharepoint designer workflow some steps needs to be repeat when the condition goes false. How can I do this?
Repeat steps in sharepoint workflow
August 27th, 2012 12:19pm
SharePoint Workflows are weak, especially in this situation. But, you could make a seperate workflow, then have it called in multiple situations. Of course, in 2007, you'd have to install codeplex's SPD Activities to get the "Start Another Workflow" action.
So, the answer is probably... just grunt through it, and duplicate the code for the False condition.
Free Windows Admin Tool Kit Click here and download it now
August 29th, 2012 4:57pm
If it is a SharePoint 2013 workflow that you are creating, you can create an additional SharePoint 2010 list workflow containing only the steps which are repeated and call the 2010 workflow from 2013 workflow, whenever condition goes false using 'Start
a workflow' action.
September 12th, 2015 4:56am