I am failing to get security filters to work with AirTable (these are filters that have worked with Google Sheets).
I have two examples:
Example 1
Security Filter:
[date] >= Today()-7
The error I get while trying to load the app is:
Error: Data table ‘breaksheet_airtable’ is not accessible due to: Error executing AirTable operation. Error type: INVALID_FILTER_BY_FORMULA. Error message: The formula for filtering records is invalid: Invalid formula. Please check your formula text…
Example 2:
Security Filter:
AND( IN( [store], SELECT(AppUsers[store], [email]=USEREMAIL() )), [date] >= Today()-7 )
The error I get while trying to load the app is:
Error: Data table ‘breaksheet_airtable’ is not accessible due to: Failed to translate AppSheet boolean operator to AirTable boolean operator. Unknown AppSheet operator: InList.
It seems that AppSheet is attempting to translate the AppSheet formula to an AirTable formula so that it can peform the filter on AirTable’s side. I am slightly familiar with the AirTable language, I wonder if there is a way to type the AirTable formula into the AppSheet security filter…?