Hello all I have been searching and I am stumped.
++Edit++ added some posts with more context. Basically I need a button visible if their email is in the SP List and a specific value is in a multi select field of their SPList entry.
I have a Power App with buttons that are visible if the logged in user exists in a SP list using the following works where DataSource is my SP List with a column of Email
Visible = If(User().Email in 'DataSource'.Email, true)
That same SP List has a Department Column which is a multiple choice and I would like to show buttons only to users that need them.
For instance a button called "Update Tax" should only be visible to a user whose email is in the SP List Email column and Tax is one of the selected values in the Department column