javascript - 使用 Google 脚本检查 Google 表格中的日期并编辑相邻单元格

标签 javascript google-apps-script google-sheets

我正在尝试编写一个脚本,如果日期等于或小于今天的日期,则在循环包含日期的列的单元格值时,该脚本将更改相邻单元格中的状态(当前与过期)。该脚本需要处理电子表格中所有工作表的 N 列(日期)并修改 O 列(状态)。这就是为什么我有床单循环供引用。

这是我到目前为止所拥有的,但我一直在碰壁。

当前,它会因 currentValue 变量超出范围而引发错误。

//----------------------------------------------------

// Look at Dates and Change Status if expired (Automatically)
function checkDates() {
 //For each sheet in the Spreadsheet
 for(v in sheets){  
 //Find the last row that has content *-2 is because of a strange return I don't understand yet
 var lastRow = sheets[v].getLastRow()-2;
 //Get Dates Range (excluding empty cells)
 var dateRange = sheets[v].getRange("N2:N"+lastRow);
 //Get the number of Rows in the range
 var numRows = dateRange.getNumRows();

  //For loop for the number of rows with content
  for(x = 0; x <= numRows; ++x){
    // Value of cell in loop
    var currentValue = dateRange.getCell(x,2).getValue();
    Logger.log(currentValue);
    // Row number in Range
    var currentRow = dateRange.getRow(x);
    // Get adjacent cell Range
    var adjacentCell = sheets[v].getRange(currentRow,15);
    // If the date is less than or equal to today
    if(new Date(currentValue) <= d){
    // Change adjancet cell to Expired
    adjacentCell.setValue("Expired");
    // Else adjance cell is Current
    } else if(listofDates != ""){
    adjacentCell.setValue("Current");
    }
  }
 } 
}

//-----------------------------------------------------

最佳答案

currentValue 超出范围的原因是 getCell(x, 2) 函数第一个参数是行号。您的行号从 0 开始,x = 0。如果您将 x 更改为从 1 开始,它应该会停止显示 currentValue 变量超出范围的错误。

for(x = 1; x <= numRows; ++x){ ... 

您还选择了 2 列,但只选择了“N”行,请将 getCell(x, 2) 更改为 getCell(x, 1)

var currentValue = dateRange.getCell(x,1).getValue();

正如我之前提到的,您的数据范围仅超过列“N”,如果您选择列“N”和“O”,则可以更容易,var dateRange = Sheets[v].getRange("N2:O"); 我对你的脚本的其余部分做了一些修改。虽然不太漂亮,但希望对您有帮助。

function checkDates() {
 //For each sheet in the Spreadsheet

  for(v in sheets){  
    var lastRow = sheets[v].getLastRow();
    //Get Dates Range (excluding empty cells)
    var dateRange = sheets[v].getRange(2, 14, (lastRow - 1), 2);
    //Get the number of Rows in the range
    var numRows = dateRange.getNumRows();

    //For loop for the number of rows with content
    for(x = 1; x <= numRows; ++x){
      // Value of cell in loop
      var currentValue = dateRange.getCell(x,1).getValue();
      var adjacentCell = dateRange.getCell(x,2);
      Logger.log(currentValue);

      // If the date is less than or equal to today
      if(new Date(currentValue) <= new Date()){
        // Change adjancet cell to Expired
        adjacentCell.setValue("Expired");
        // Else adjance cell is Current
      } else if(currentValue != ""){
        adjacentCell.setValue("Current");
      }
    }
  } 
}

关于javascript - 使用 Google 脚本检查 Google 表格中的日期并编辑相邻单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35907098/

相关文章:

google-apps-script - 如何将单元格引用传递给 Apps 脚本自定义函数?

google-sheets - 使用公式引用单元格?

javascript - c3.js - c3 图表,有一个工具提示,里面有 c3 图表

javascript - 组合数组删除重复项的最有效方法

javascript - 使用 JavaScript 从日历中获取前几周和下周

google-apps-script - Drive.Permissions.insert (Value) - Drive API,你可以使用 'value' 下的数组吗?

javascript - Google 脚本 'GetValue' 无法读取电子表格中用 'Query' 填充的值

JavaScript/jQuery getSelection 高亮合并span html元素

function - 我可以将 onEdit 函数限制为 Google 表格中的复选框单元格吗?

google-sheets - Google 表格条件格式基于使用另一表格单元格值的相对引用