Dear sir, please help me. I am trying to copy some range from L4 TO P20 AND PASTE TO another sheet and also clear B7,C4 and G7 on List sheet. But my script copy only one row and B7,C4 and G7 were not clear. Please help me.
function moveValuesOnly() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var source = ss.getRange("List!L4:P20");
var destSheet = ss.getSheetByName("Sheet6");
destSheet.appendRow(source.getValues()[3]);
Source.getRange('B7,C4,G7').clearContent()
}