Home > Software design >  APPS Script Function Not allowing others to run
APPS Script Function Not allowing others to run

Time:08-08

I have created a script that updates a google form via google sheets. I need this to be administered by other staff.

There are multiple functions but they all are identical to the screenshot below, just editing different parts of the form.

Is anyone able to give me some advice so other staff can use these functions too?

PS. I have the functions tied to a "button" (image) on the google sheet.

Apps Script Function Example

CodePudding user response:

In order to be able to run a function by clicking a button (image) from a script contained by a spreadsheet, the users should be spreadsheet editors.

In order to be able to modify a form, users should be form editors.

Conclusion

Share the spreadsheet and the form as editors with the users that have to run a bounded script to edit the respective form.

  • Related