Solved

How To Prevent Workflow From Triggering Itself

  • 17 November 2021
  • 3 replies
  • 399 views

I have a workflow that's triggered by an update to a list item in SharePoint Online, but part of my flow is applying an update to the item that triggered the flow so I'm ending up in an infinite loop.  Is there a configuration that would prevent the workflow from triggering itself?  I want it to run whenever a physical user updates an item, but not when the item is updated by the workflow automation.  

icon

Best answer by Gavin-Adams 17 November 2021, 21:33

View original

3 replies

Userlevel 4
Badge +12

HI @nmaceyko 


If you are using a nintex form for o365 on the sharepoint list item,


I normally have some logic in the form (eg rule, hidden field, etc) which sets a Boolean value of 'FormUpdated' to yes. That was this field is only set to yes by human interaction.


 


In the start trigger add a condition to only start when 'FormUpdated' = yes.


Then in an action in the workflow update the item to set 'FormUpdated = no.


 


That should filter out the self trigger for you.

Thank you this eventually did work for me but there was one very important setting in the Nintex form designer that needed to be changed before I could get it to work right.  I was having a tough time getting the rule to set the FormUpdated flag to trigger properly upon form load and I finally realized it was because it wasn't configured to run the rules when the form loads, instead it was only running when the user interacted with the form:


 



 

Userlevel 4
Badge +12
That's a great find.
I hadn't seen that setting before.

Thanks for pointing that out.

Reply