craftApprentice
craftApprentice

Reputation: 2777

Google Apps Script: How can I call a form from a script embebed in a spreadsheet?

I want to build a script which can allow user to call a form from a function that I added to my spreadsheet menu using addMenu("Menu_name", menuEntries) method.

How can I implement this "go to live form" from inside my function?

Upvotes: 0

Views: 2740

Answers (1)

Serge insas
Serge insas

Reputation: 46792

Simply create a small UI with a link to the form (like any other URL). And add this function in your menu.

See this post for the code to create the UI: Google Apps Script to open a URL

Upvotes: 1

Related Questions