
Announcements
Hi there,
I am trying to set up a flow but I'm running into trouble because there's only one option that says "When a group member is added or removed". Is there a way to separate the two where I can just say "When a group member is added" or "When a group member is removed" ?
If that's not a thing, how can I separate the two in Power Automate? We're trying to check if a member has been removed from a distribution list to then remove him/her from more groups. Then we'd like to do another check on that same distribution list/group to see if a member has been added and add that member to more groups.
Thanks for the help!
John
Hi @JohnMG,
You could use a trigger condition and check if the @removed property is empty. If this is the case we are talking about the adding of a member.
@empty(triggerOutputs()?['body/@removed'])
For removed scenario create a second flow and use this trigger condition:
@not(empty(triggerOutputs()?['body/@removed']))