I'm trying to read a cell from sheet INPUT and check to see if it is present in sheet STORAGE (which has only one column). If it is found, it would need to be removed. The script can terminate if the string is found. I have written some code that seems like it would work in theory, but just times out after six minutes when I try using it.
I've tried setting it up so that the loops only iterate once each, but it still seems to be stuck somewhere. Here is my code:
var active_spreadsheet = SpreadsheetApp.getActive();
var sheet_input = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('INPUT');
var sheet_storage = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('STORAGE');
var last_row_counter = 0;
function findAndRemove() {
last_row_counter = sheet_storage.getLastRow();
var n = 1;
while (n <= last_row_counter) {
if (sheet_input.getRange("B2").getValue() == sheet_storage.getRange(n,1)) {
sheet_storage.deleteRow(n);
n = last_row_counter;
}
n = n++;
}
Brian,
See if this runs better:
As you mentioned the code will exit after the first time the value is found. I used col A as the column that needs to be searched (change to suit). As you see this code gets all the values of that column in one call, then loops through it to see if a match is found.