I wrote a simple script to automatically sort new input in various sheets, but I would like to exclude the two first sheets. Here's my script:
function onEdit(){
var sh = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var editedCell = sh.getActiveRange().getColumnIndex();
if(editedCell == 2) {
var range = sh.getRange("A3:P20");
range.sort({column: 2});
}
}
So if I use .getActiveSheet() while working on the first two sheets, the script wil do it's job, but unwanted. Can I stop the script, put on pause? Thanks for a reply. Tony
Thank you for the answer. I'm really a novice and tried to put your code into mine, but I get a fault whilst debugging. Would it be possible to put your script completely in mine. I think I made mistakes trying to get it in.