Answer the question
In order to leave comments, you need to log in
How can I create an input to receive data from the user?
Hello. Where can I read about creating input for Google Sheets scripts? To get login password etc.
Answer the question
In order to leave comments, you need to log in
There are at least a couple of options:
1) Use Browser.inputBox (title, prompt, buttons);
const title = "Заголовок";
const prompt = "Сообщение";
const buttons = Browser.Buttons.OK;
var retVal1 = Browser.inputBox(title, prompt, buttons);
const title = "Заголовок";
const prompt = "Сообщение";
const buttons = Browser.Buttons.OK;
var retVal2 = SpreadsheetApp.getUi().prompt(title, prompt, buttons);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question