I want to show these views to the admin.
And keep it hidden from the users.
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.