I am trying to build a shared database for ~30 research sites. There is a set of shared variables that all sites will track but sites also want the ability to track additional site-specific data points. Each site should get to see and edit ONLY their own records (i.e. they should not be able to see or edit any the individual records of any other sites). Each site should have access to an interface dashboard that shares summary data for the shared variables across all sites.
I've tried a few different approaches, but haven't found the solution yet.
- I tried creating different views within the same table for each site, but I don't think that will work because I can't seem to restrict access to a view to only one site.
- I tried creating different tables within the same base for each site, but I don't think that will work because then I can't create a dashboard that aggregates across all sites.
- I think syncing may be an option, but we have the Team plan which restricts a base to 10 syncs.
Any tips would be very much appreciated!