Security Filter, show guest all data in applauncher

Hi,

IN([SITE], SELECT(USERS[SITE], [EMAIL] = USEREMAIL()))
Above formula will show specific SITE to a specific user on the list.

Need to show all sites when a useremail is not on the USERS table, like if a visitor/guest will use the applauncher. Thanks

3X_d_f_df9bf063f681610c62b45cd90831fbefbe69eef5.png

Solved Solved
0 2 79
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

Try this:

OR(
  IN([SITE], SELECT(USERS[SITE], [EMAIL] = USEREMAIL())),
  NOT(IN(USEREMAIL(), USERS[EMAIL]))
)

See also:

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

Try this:

OR(
  IN([SITE], SELECT(USERS[SITE], [EMAIL] = USEREMAIL())),
  NOT(IN(USEREMAIL(), USERS[EMAIL]))
)

See also:

Thanks Steve!!! It works

Top Labels in this Space