Hi,
I’m encountering an unexpected behavior with AppSheet’s Security Filter and the Quick Sync feature (Im on Core plan)
I’m using the exact same formula for the Security Filter on three different tables.
-
On Table 1, the Security Filter works as expected and does not disable Quick Sync.
-
On Table 2 and Table 3, applying the identical formula unexpectedly disables Quick Sync.
So,
Is this a known bug, or is there a specific reason why applying a Security Filter to multiple tables might affect Quick Sync differently?
I’m trying to understand if there are any hidden limitations or if my formula is inadvertently causing this behavior on some tables but not others.
Any insights would be greatly appreciated.
Thank you.
Here is the Formula:
IF(
IN(
USEREMAIL(),
LIST(
"user1@amj-jsc.com",
"user2@amj-jsc.com",
"user3@amj-jsc.com",
"user4@amj-jsc.com",
"user5@amj-jsc.com"
)
),
TRUE,
IF(
CONTAINS(INDEX(USERSETTINGS("User Dept GeneralGrp MainGrp ListOtherDepts"), 1), "_BPSX"),
OR(
[Department ID] = INDEX(USERSETTINGS("User Dept GeneralGrp MainGrp ListOtherDepts"), 1),
[Department ID] = "0150_BPSX0"
),
[Department ID] = INDEX(USERSETTINGS("User Dept GeneralGrp MainGrp ListOtherDepts"), 1)
)
)
