Sheet in question:
https://docs.google.com/spreadsheets/d/1Pl0DBdRSsnMJnMiJwHJnikypbkSPnua9HHywdd2Gti4/copy?usp=sharing/
I've managed to copy rows, but I want to exclude any rows within the source range that are empty.
Current code:
function copytestdata() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet1 = ss.getSheetByName("JOURNAL");
var sheet2 = ss.getSheetByName("LOG");
sheet1.getRange("A6:K12").copyTo(sheet2.getRange(sheet2.getLastRow()+1,1,1,7), {contentsOnly:true});
}