Google脚本:我的基于时间的触发器不起作用

时间:2019-02-08 17:39:35

标签: google-apps-script google-sheets spreadsheet

我创建了此触发器,并让它运行了几天,但尚未成功。 我的功能非常简单:有一个可以随时按下的按钮,但我也希望每晚晚上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”是按下按钮后运行的功能。 谢谢

0 个答案:

没有答案