
How would you go about checking to see if the logged in user is a member of one of two Azure AD security classes? I am checking so that I know which fields to enable or disable.
@Greg27 ,
I guess with "Azure AD security classes", you refer to AzureAD security group.
You could try AzureAD Connector or Office365Groups Connector with a formula like this:
User().Email in Concat(AzureAD.GetGroupMembers("AzureAD GroupID").value,mail)
Hope it helps !