Is it possible to:
- have a checkbox (J2) copy a result (J3) and paste
contentsOnlyinto another cell (D13) - to then have the same checkbox copy a different result (shown in J3) and paste
contentsOnlyinto the cell below the previous (D14). - lastly, loop step 2
.
Some of the searching and tried modifications:
var Col="A"; //Column that will find the last row not empty, can be assigned as parameter
var sheet = SpreadsheetApp.getActive().getSheetByName('Sheet2');
var yourRange = sheet.getRange(Col + 1).offset(sheet.getLastRow()-1, 0); //+1 spare 1 row after last row
var target = targetSheet.getRange(targetSheet.getLastRow() + 1, 4);
Also looking at this link to try and Determining the last row in a single column and continue.
.
Please find editable sheet below:
Trial - Checkbox to Paste by last row in Column D
