创建新工作表并在 Google 文档中的电子表格之间移动工作表

发布于 2024-12-04 19:05:30 字数 116 浏览 0 评论 0原文

我有 2 个要求:

1)我想以编程方式从当前电子表格中的现有工作表创建一个新工作表

2)我想以编程方式将一张工作表从一个电子表格复制到另一个电子表格

非常感谢您的帮助。

I have 2 requirements:

1) I want to create a new sheet from existing sheet in current spreadsheet programmatically

2) I want to copy one sheet from one spreadsheet to another spreadsheet programmatically

Help appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何处潇湘 2024-12-11 19:05:30

由于您尚未指定环境/语言。我认为最简单的方法是使用 Apps 脚本,因为它内置在 Google 电子表格中。

以下是执行此操作的示例代码:

function myFunction() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getSheetByName('SheetName');
  sheet.copyTo(ss).setName('NewName'); //copy to the same spreadsheet.
  //get a different spreadsheet (you can get its id in the url)
  var os = SpreadsheetApp.openById('any-spreadsheet-key-that-you-can-edit');
  //copy sourceSheet from one spreadsheet to another
  sheet.copyTo(os).setName('AnotherName');
}

要运行此代码,只需打开包含要复制的工作表的电子表格,单击菜单“工具”>“脚本编辑器..粘贴代码,保存并运行>我的函数

Since you have not specified the environment/language. I think the easiest way to do this is using Apps Script as it's built-in in Google Spreadsheets.

Here is a sample code that does this:

function myFunction() {
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getSheetByName('SheetName');
  sheet.copyTo(ss).setName('NewName'); //copy to the same spreadsheet.
  //get a different spreadsheet (you can get its id in the url)
  var os = SpreadsheetApp.openById('any-spreadsheet-key-that-you-can-edit');
  //copy sourceSheet from one spreadsheet to another
  sheet.copyTo(os).setName('AnotherName');
}

To run this, just open the spreadsheet with the sheet you want to copy, click the menu Tools > Script editor.. Paste the code, Save and Run > myFunction

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文