I want a button to appear only when the logged in user is an admin, and then define the admins by their email.
How do I write the expression?
I tried something like this:
If(Office365Users.UserProfileV2(Email) = "power.app@email.com",true,false)

I want a button to appear only when the logged in user is an admin, and then define the admins by their email.
How do I write the expression?
I tried something like this:
If(Office365Users.UserProfileV2(Email) = "power.app@email.com",true,false)
You can use User().Email = "power.app@email.com"
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.