Show if view admin and users

I want to show these views to the admin.

And keep it hidden from the users.

 

Capture.PNG566.PNG

 

Solved Solved
0 3 352
1 ACCEPTED SOLUTION

Hello @Sayad, try this expression:

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

View solution in original post

3 REPLIES 3

UX - SELECT VIEW - DISPLAY - SHOW IF


Hello @Sayad, try this expression:

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

THANK U BOTH OF YOU.

Top Labels in this Space