function copyDown() {

var Column = 2 //คอลัมน์ที่ มี สูตร ต้องการให้ copy ลง

var sheet = SpreadsheetApp.getActiveSheet(), lastRow = sheet.getLastRow();

var beforeLastRow = lastRow -1;

sheet.getRange(beforeLastRow, Column).copyTo(sheet.getRange(lastRow ,Column) , {contentsOnly:false});

}