我创建了此触发器,并让它运行了几天,但尚未成功。 我的功能非常简单:有一个可以随时按下的按钮,但我也希望每晚晚上11:59运行/按下该按钮。 功能如下:
// Triggers 'Move to Custom Report' button every 24 hours
// Runs at approximately 23:59 am in the timezone of the script
function triggerCustomReportButton(){
ScriptApp.newTrigger("sendToCustomReportSheet")
.timeBased()
.atHour(23)
.nearMinute(59)
.everyDays(1)
.create();
}
“ sendToCustomReportSheet”是按下按钮后运行的功能。 谢谢