Я нашел ответ сам:
// global
var ss = SpreadsheetApp.getActive();
function my(){
var sh = ss.getActiveSheet(), lRow = sh.getLastRow(), mylastrow=lRow + 1;
var lCol = sh.getLastColumn(), range = sh.getRange(lRow,1,1,lCol);
sh.insertRowsAfter(lRow, 1);
range.copyTo(sh.getRange(lRow+1, 1, 1, lCol), {contentsOnly:false});
SpreadsheetApp.getActiveSheet().getRange('A'+mylastrow).setValue('');
SpreadsheetApp.getActiveSheet().getRange('B'+mylastrow).setValue(new Date());
SpreadsheetApp.getActiveSheet().getRange('C'+mylastrow).setValue('0');
SpreadsheetApp.getActiveSheet().getRange('D'+mylastrow).setValue('');
SpreadsheetApp.getActiveSheet().getRange('E'+mylastrow).setValue(new Date());
SpreadsheetApp.getActiveSheet().getRange('F'+mylastrow).setValue('');
SpreadsheetApp.getActiveSheet().getRange('G'+mylastrow).setValue('');
}