У меня есть форма Google, которая собирает данные о клиентах в электронную таблицу Google с двумя вкладками;sheet1 = Traffic и sheet2 = ComMan.Я пытаюсь переместить данные, захваченные в моей переменной «spot1», с вкладки «Трафик» на вкладку «ComMan» и не могу понять, как это сделать.Я знаю, что все работает до линии sheet.getRange (spot1) .copyTo (targetRange); .Я надеюсь, что кто-то может помочь.Спасибо за ваше время.
Вот мой код:
function onEdit() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = SpreadsheetApp.getActiveSheet();
var r = sheet.getActiveCell();
var rowIndex = r.getRow();
var sheet1 = "Traffic"; //the active spreadsheet
var sheet2 = "ComMan"; //the ComMan Tab
var status1Col = 19;//status1Col if "No"
var status1Value = "ComMan";//if status1Col = "No", select "ComMan" in the status1Value to send to the ComMan tab
var clientInfo = sheet.getRange(rowIndex, 1, 1, 5);//cols A:E contain client info
var status1Range = sheet.getRange(rowIndex, 11, 1, 5);//cols K:O contain spot 1 info
var comDelValue = sheet.getRange(rowIndex, 60, 1, 1);//col BG contains spot 1 delivery method
var spot1 = [[clientInfo.getValues()],[spot1Info.getValues()],[comDelInfo.getValues]]; //an array to capture all the spot 1 data in one shot
//the statement below will copy the date in spot1 variable and send it to the ComMan tab
if (sheet.getName() == sheet1 && range.getColumn() == status1Col &&
range.getValue() == status1Value){
var targetSheet = ss.getSheetByName(sheet2);
var targetRange = targetSheet.getRange(targetSheet.getLastRow() +1, 1);
sheet.getRange(spot1).copyTo(targetRange);
}
}