How to force filter for a table for a user

Hello, I have, as a use case among others, a customers table which I would like to share data with a partner for a given country (say USA). Is there a way to invite a user, and let him explore the table data but by enforcing the filter country == USA ? So that he cannot see customers from other coutries ?

Hi @f.laenen
You would have to create a Model SQL query (or View on your database), where you limit the results.
It's basically what is called row-level-access, which is implemented in Metabase as Sandboxing:
https://www.metabase.com/docs/latest/permissions/data-sandboxes.html

Thank you !