Google脚本可将电子表格中的工作表复制到新电子表格,并以特定单元格命名新电子表格

时间:2018-08-08 10:26:59

标签: google-apps-script google-sheets

我有一个包含多个工作表的google电子表格,我想将每个工作表复制到一个新的电子表格中,并让新的电子表格以特定单元格中的文本命名。我很高兴多次运行该脚本,所以我想让它复制活动工作表。

即 我拥有的= 电子表格称为“颜色”-表格1 =“红色”,表格2 =“蓝色”,表格3 =“黄色”,等等。

我想要的=

电子表格称为“红色”。电子表格称为“蓝色”,电子表格称为“黄色”

到目前为止,我有这个脚本,但是它告诉我“找不到脚本功能:saveAsSpreadsheet有关更多信息”

function copyDocument() {
var ss = SpreadsheetApp.getActiveSpreadsheet(); // Get current active spreadsheet.
var sstocopy = ss.getActiveSheet(); // Get spreadsheet with DriveApp.
var sheet = ss.getActiveSheet(); // Get current active sheet.
var sheet_name = sheet.getRange("i2").getValue(); // Get the value of cell B1, used to name the new spreadsheet.
var folder = DriveApp.getFolderById("xxxxxxxxxxxxx"); // Get the ID of the folder where you will place a copy of the spreadsheet.
sstocopy.makeCopy(sheet_name,folder); // Make a copy of the spreadsheet in the destination folder.

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您需要将电子表格作为文件而不是电子表格打开才能使用makeCopy功能。

因此,您代码中的这一行是不正确的:

var sstocopy = ss.getActiveSheet(); // Get spreadsheet with DriveApp.

应该是:

var sstocopy = DriveApp.getFileById(ss.getId()); // Get spreadsheet with DriveApp.

因此正确的代码如下:

function copyDocument() {
    var ss = SpreadsheetApp.getActiveSpreadsheet(); // Get current active spreadsheet.
    var sstocopy = DriveApp.getFileById(ss.getId()); // Get spreadsheet with DriveApp.
    var sheet = ss.getActiveSheet(); // Get current active sheet.
    var sheet_name = sheet.getRange("i2").getValue(); // Get the value of cell B1, used to name the new spreadsheet.
    var folder = DriveApp.getFolderById("xxxxxxxxxxxxx"); // Get the ID of the folder where you will place a copy of the spreadsheet.
    sstocopy.makeCopy(sheet_name,folder); // Make a copy of the spreadsheet in the destination folder.

回答您的评论:

出于您的目的,应按以下方式修改代码:

var sheet = SpreadsheetApp.getActiveSheet(); // Get current active sheet.
var sheet_name = sheet.getRange("i2").getValue(); // Get the value of cell B1, used to name the new spreadsheet.

var folder = DriveApp.getFolderById("xxxxxxxxxxxxx"); // Get the ID of the folder where you will place a copy of the spreadsheet.

var newSS = SpreadsheetApp.create(sheet_name); // create new blank spreadsheet in a root folder
var asFile = DriveApp.getFileById(newSS.getId()); // get new spreadsheet as a file

folder.addFile(asFile); // add this file to destination folder
DriveApp.getRootFolder().removeFile(asFile); // remove a file from root folder

var copiedSheet = sheet.copyTo(newSS); // copy active sheet to new spreadsheet
copiedSheet.setName(sheet_name); // rename copied sheet
newSS.deleteSheet(newSS.getSheetByName('Sheet1')); // remove "Sheet1" sheet which was created by default in new spreadsheet
相关问题