I have Button. I only want the button to be Visible to those with 'National' access.
Assuming how I set the variable in the App OnStart (as shown below) is correct:
Set(varIsNational,If(User().FullName="Popeye daSailor", true ,User().FullName="Peppy LePew", true ,User().FullName="Jack
Sprat", true ,User().FullName="Jessica Rabbit", true , false ));
Is the following condition correct for achieving my goal is I place it in the Button Visible property; or should it just be varIsNational:
If(varIsNational=true, true,false)

Report
All responses (
Answers (