当我在下面调试我的代码时,在参数列表后出现缺少)的错误

function Update() {
  var returnSheet =
  SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Sheet1');
  var rowCount = returnSheet.getLastRow();
  var rrCell = 'A' + rowCount;
  var rrCell2 = 'E' + rowCount;
  returnSheet.getRange(rrCell:rrCell2).moveTo(returnSheet.getRange("A2:E2"));
}

最佳答案

@Shilly找到了答案

  returnSheet.getRange(rrCell+':'+rrCell2).moveTo(returnSheet.getRange("A2:E2"));

关于javascript - 重新排列行时参数列表后缺少),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53885580/

10-12 21:07