I have cero experience in coding in Google sheets. I'm self teaching stuff as I need it. Right now I need to create a macro that runs hourly another exisitng one. So at the end of every hour, the new macro should automatically run the existing one. Thanks for your help!
function func1() {
const name = func2();
Logger.log(name);
}
function func2() {
return SpreadsheetApp.getUi().prompt("Your Name","Enter Name",SpreadsheetApp.getUi().ButtonSet.OK).getResponseText();
}