在Google表格中按名称查找带有明天日期的表格

时间:2019-10-07 16:35:03

标签: google-apps-script google-sheets

我在Google表格中有一个工作表,其中有很多工作表,每个工作表代表一天-以“ dd / MM / yy ddd”格式命名。

我需要一个每天在特定时间触发的函数,该函数会寻找明天的工作表以将数据复制到另一个工作表。

1 个答案:

答案 0 :(得分:1)

尝试使用SheetName:

field.setImeOptions(EditorInfo.IME_ACTION_NONE);

然后使用

function getTomorrowsSheetName() {
  var today=new Date();
  //Logger.log(Utilities.formatDate(new Date(today.getFullYear(),today.getMonth(),today.getDate()+1), Session.getScriptTimeZone(), "dd/MM/yy E"));
  return Utilities.formatDate(new Date(today.getFullYear(),today.getMonth(),today.getDate()+1), Session.getScriptTimeZone(), "dd/MM/yy E");
}

Utilities.formatDate()

Javascript Date() Reference

Simple Date Format