I have a list of projects with a multi-person column listing all the internal stakeholders. I want to be able to report on when users become inactive and remove them from the list accordingly.
Currently inactive users remain in the list indefinitely and it becomes untidy.
What's the best way to check the user profiles for each of the stakeholders in each item? So far I've got:
- Get items
- @{items('Apply_to_each')?['Stakeholders']}
- Use the select data operation to get the list of each of the stakeholders' emails.
The output is an array of emails, but I need to separate these so I can check the user profile for each one.
[
"person1@domain.co.uk",
"person2@domain.co.uk",
"person3@domain.co.uk"
]
How can I do this?