In recent weeks, I’ve been experiencing a new issue that didn’t occur to me before and worked perfectly. The problem is that when exporting a Slice view to a .csv file, all the data (including all rows) from the entire table is downloaded instead of the filtered or segmented data in AppSheet.
Weeks before, downloading the file using the “export this view to a .csv file…” action only extracted the data filtered by the Slice user, without any issues.
The current expression I’m using for the Slice is as follows:
OR(
IN(USEREMAIL(), {“user1”, “user2”, “user3@”,“user4”}),
[USER_Sales] = USEREMAIL(),
[USER_Marketing] = USEREMAIL()
)
With this expression, I’m looking for the following effect:
-
Fixed email list users will see all rows.
-
Other users will only see rows where their email address appears in the [USER_Sales] or [USER_Marketing] columns.
-
If no condition is met for a row, it is not included in the slice and therefore will not be visible to the user in the app.
The action I assigned to the table doesn’t take into account the Slice filter expression and downloads all the data.
Any recommendations or suggestions on how I can resolve this issue?

