Hello,
Today I thought about idea to make a sharepoint list with one column (People) that would contain a list of app admins.
I added this sharepoint list, and created a button that would provide access to admin functions, but it does not work (added this function to property Visible).
!IsBlank(LookUp('ADMIN_LIST_SP','ADMIN_FULLDATA'.Email=User(Email)))
Invalid argument type, invalid number of argument expected 0 got 1
ADMIN_LIST_SP= sharepoint list
ADMIN_FULLDATA = sharepoint column people type
I also tried this:
User().Email in ADMIN_LIST_SP.'ADMIN_FULLDATA'
But this shows that data cannot be converted from Text to record.
Is this good idea to make such a validation on Visible of buttons?
And how can I fix that?