I might be answering my own question here so please let me know if this will work as I don't have other admin users yet. I want to define a variable which has admin user email addresses in it so that I can use the variable to control the visibility of buttons.
At this point, I have a working solution with one email address:
OnStart
Set(varAdmins, {Email: "myname@mycompany.com"})
Button Visibile Property
User().Email = varAdmins.Email
Will the button's visible property still work if I add additional users to the collection e.g.
Set(varAdmins, {Email: "myname@mycompany.com"},{Email: "othername@mycompany.com"})
My syntax might be wrong here.
Or is it as simple as something like this:
Set(varAdmins, "myname@mycompany.com; othername@mycompany.com")