Show if view admin and users

I want to show these views to the admin.

And keep it hidden from the users.

UX - SELECT VIEW - DISPLAY - SHOW IF

1 Like

Hello @Sayad , try this expression:

SWITCH(
  INDEX(
     SELECT(
       User Login[User Control],
       [Email]=useremail()
            )
        ,1),
  "User",FALSE,
  "Admin",TRUE,
  FALSE
)
1 Like

THANK U BOTH OF YOU.

1 Like