Reputation: 1
I'm building an accounting system for a small business using Google Sheets. I have different spreadsheets:
I wrote many functions with Google script to automatically update all the others spreadsheet when some changes are made.
Here is the problem, as you can imagine I can't grant the access to the balance sheet to all the users. Is there a way to allow every user to run a script that makes changes to a spreadsheet they don't have the access to?
Upvotes: 0
Views: 2212
Reputation: 3152
You can do this by using a web app to allow users call your script as you.
Create your script
Create and publish a web app which calls your script / function
crate another script / function that the end user can run to call your web app URL
Google Sheets web app to run script as owner
Upvotes: 3