I want to be able to delete a row if certain columns match the criteria. This is what I have so far:
function deleteEachRow(){
let tempSheet = SpreadsheetApp.getActiveSpreadsheet();
let sheet = tempSheet.getSheetByName("Intermediate");
var RANGE = sheet.getDataRange();
var rangeVals = RANGE.getValues();
}
from here I would like to find out if column[11] !=='' and column[12] ==='completed', if it meets the criteria then delete the row.
Any ideas?