Hello,
I have a button on my form that I have targeted to a group of users that pulls from a SharePoint list. The formula on the visible property for the button is: If(IsBlank(LookUp('IIN Admins', Admins.DisplayName = varUser.FullName, Admins.DisplayName)),false,true) And currentTab="EditIIN"
This works really well and only users from the table/custom list "IIN Admins" can see it. I also have another table/custom list called "Operations Admins" with the same layout and field "Admins" as the IIN Admins list. I wanted to include this operations table in the visible formula for the same button as I did not want to include those users in the IIN Admins list, since they have more permissions. However, I can't seem to figure it out.
I tried the following but it does not seem to work: currentTab="EditIIN" AND (IsBlank(LookUp('IIN Admins', Admins.DisplayName = varUser.FullName, Admins.DisplayName)),false,true) Or If(IsBlank(LookUp('Operations Admins',Admins.DisplayName=varUser.FullName,Admins.DisplayName)),false,true)
Would appreciate some guidance on this.