// 1) Получить все данные из источника
const sourceSsId = "asdfg";
const sourceSheetName = "Sheet1";
const destinationSsId = "asdfg2";
const destinationSheetName = "Sheet2";
let [sourceHeaders, ...sourceData] = SpreadsheetApp.openById(sourceSsId).getSheetByName(sourceSheetName).getDataRange().getValues();
// 2) Убрать все строки (по какому-то ключевому столбцу) которые уже есть в приёмнике
const destinationSsId = "asdfg";
const destinationSheetName = "Sheet1";
let [destinationHeaders, ...destinationData] = SpreadsheetApp.openById(destinationSsId).getSheetByName(destinationSheetName).getDataRange().getValues();
const sourceKeyColumnId = 0; // Столбец A в источнике
const destinationKeyColumnId = 0; // Столбец A в приёмнике
let sourceKeys = sourceData.map(dataRow=>dataRow[sourceKeyColumnId]);
let filteredData = destinationData.filter(dataRow=>{
let destinationKey = dataRow[destinationKeyColumnId];
return !sourceKeys.includes(destinationKey);
});
// 3) Добавить дату копирования в каждую из оставшихся после фильтра строк
let now = new Date();
filteredData = filteredData.map(dataRow=>[...dataRow, now])
// 4) Добавить эти данные в приёмнике
let outSheet = SpreadsheetApp.openById(destinationSsId).getSheetByName(destinationSheetName);
if (filteredData.length){
outSheet.getRange(outSheet.getLastRow()+1, 1, filteredData.length, filteredData[0].length).setValues(filteredData);
};
=ВПР(25;{{0; 50; 100; 200}\{50; 100; 200;10000}};2;1)
=ВПР(50;{{0; 50; 100; 200}\{50; 100; 200;10000}};2;1)
=ВПР(99;{{0; 50; 100; 200}\{50; 100; 200;10000}};2;1)
=ВПР(101;{{0; 50; 100; 200}\{50; 100; 200;10000}};2;1)
if(e.source.getActiveSheet().getRange(row,2).getValue()){
Booleans are returned as-is.
undefined turns into false.
null turns into false.
0, -0, and NaN turn into false; other numbers turn into true.
0n turns into false; other BigInts turn into true.
The empty string "" turns into false; other strings turn into true.
Symbols turn into true.
All objects become true.
Проверьте заземление, поставьте конденсатор и катушку на выходе, ферритовое колечко на входе, отнесите блок подальше от электроники, может даже ориентация блока в пространстве помочь.
А проще всего - взять компьютерный БП, там есть 12В, для него такие нагрузки - плёвое дело. А купить можно за пиво.