コピーしたシート (リスト) をスプレッドシートの最後に移動するには?
function makecopy() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sourceSheet = ss.getSheetByName('List');
var values = sourceSheet.copyTo(ss);
}
コピーしたシート (リスト) をスプレッドシートの最後に移動するには?
function makecopy() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sourceSheet = ss.getSheetByName('List');
var values = sourceSheet.copyTo(ss);
}
moveActiveSheetはスプレッドシート オブジェクトのメソッドです
例を次に示します。
function makecopy() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sourceSheet = ss.getSheetByName('List');// you can get the sheet by its name or by its index
var copy = sourceSheet.copyTo(ss);
Logger.log(copy.getName());// optional, just to check the copy's name
ss.setActiveSheet(copy);// set it active
ss.moveActiveSheet(ss.getNumSheets());// move it to the last position
}