I'm creating a SharePoint 2013 Workflow in SharePoint Designer (using SharePoint Online). How can I remove 2 last characters of a string workflow variable? Is there a way to do it for example using actions?
2 Answers
1
votes
Download SharePoint Designer Workflow String Actions WSP from here: http://spdwfstringactions.codeplex.com/ I saved the file in c:\deploy\
To deploy this solution, run SharePoint Management Shell as Administrator:
> Add-SPSolution c:\deploy\<solution file>.wsp
> Install-SPSolution -Identity SPWorkflowStringActions.wsp -GACDeployment
Make sure SPDWorkflowStringActions assembly is in C:\Windows\assembly.
Open SharePoint Designer. Now in workflow actions you will have a String Actions group that you can you for string manipulations. I hope it'll help!