I have a form that asks a series of questions about a new employee. The employee may have mutliple certifications. I have these certification types as choices in a SharePoint. I have a series a condition for each certification type. If this certification type equal yes, then send this type of email, etc. I also have it create a new record in SP for the new employee. I'd like for the flow to also update the certification/roles based on the answers. This works if there is only one, but not multiple. I get an error message saying the update is conflicting with other updates.
I think that I just need to move the update down, or something... not really sure. Would like some help on how to better construct this so I can avoid that error.
THis is where I'm updating both of them if yes
Hello @MaryT0905 ,
you get an error because you've got multiple branches running in parallel, all of them trying to update the same item - they don't like it. Also, as you have it now it won't update multiple values in the choice field, it'd keep only the latest value.
A better approach would be to:
{ "Value": "CertificationShorcut" }
Michael E. Gernaey
497
Super User 2025 Season 1
David_MA
436
Super User 2025 Season 1
Riyaz_riz11
244
Super User 2025 Season 1