Hi, I have spent many hours searching for my solution. There are similar questions already posted, but what I need is to HIDE Button based on my Sharepoint List column:
1)I have Sharepoint List "Workers" with 3 available Positions("Positions" is a column)- "Employee"," Deputy", "Admin"(basically a selectable Value in List)
2) If User is Admin then show the button, else hide
3) Other solutions point to LookUp function just to return value if person is in the list. I DO NOT need to check if person is in the list, but to check if already existing person is of Value = Admin
My idea:
On App Screen:
Set( UserPosition; LookUp(Workers; UserPosition.Position.Value ="Admin"))
On Employe Screen:
Visible = UserPosition
I know it is false, but just as an idea..