Move Entire Row to Another Spreadsheet w/Checkbox

How to move data from one spreadsheet to an entirely separate spreadsheet via Apps Script.
Important Notes:
* As with all on edit scripts, this script is not meant to be run manually but runs automatically from the trigger.
* This must be done with an installed trigger; a simple onEdit(e) trigger cannot access another spreadsheet
* The format is destination_sheet.getRange(full row).setValues(source_sheet.getRange(full row))

Leave a Reply

Your email address will not be published. Required fields are marked *