
Announcements
I have a flow that get a list of user (from a SharePoint list) and grant permission of a SP list item (for each) user.
It works well before. However when one of the user have left the company, the flow will failed with error "couldn't resolve user". How could I add a conditional check so that the error of single user would not stop entire flow?
You could use Search for users with each person's e-mail address, then check to see if any results come back. If so you can proceed with the flow and if not do nothing.
The expression in the condition is:
length(outputs('Search_for_users_(V2)')?['body/value'])