2014-04-21 28 views

回答

0

作品對我來說

  function ctest() { 
     var source = SpreadsheetApp.getActiveSpreadsheet(); 
     var sheet = source.getSheets()[1]; 
     Logger.log(sheet.getName()) 

     var destination = SpreadsheetApp.create("testcopy"); 
     sheet.copyTo(destination); 

     } 
相關問題