如何从一个 Google Sheet 导入图表到另一个 + 自动更新
How to import a chart from one Google Sheet in another + automatically updatable
我有 sheet A 和另一个 B。在 A 中存在一个图表,该图表继续填充数据。我想在 sheet B 中复制它,而不是使用简单的 copy/paste 而是具有自动更新功能。
不幸的是,我的代码编写能力很差,但我试图在论坛上找到解决方案。只是我发现的一个:我的任务可以用脚本完成。
如果您使用 copy()
方法here,您可以制作电子表格的副本,只要原始电子表格发生更改,该副本就会自动更新。
例如
//open Spreadsheet A by Id
var sheetA = SpreadsheetApp.openById('ID_of_Spreadsheet_A');
//Copy Spreadsheet A and call the copy Spreadsheet B
sheetA.copy("Spreadsheet B");
我有 sheet A 和另一个 B。在 A 中存在一个图表,该图表继续填充数据。我想在 sheet B 中复制它,而不是使用简单的 copy/paste 而是具有自动更新功能。
不幸的是,我的代码编写能力很差,但我试图在论坛上找到解决方案。只是我发现的一个:我的任务可以用脚本完成。
如果您使用 copy()
方法here,您可以制作电子表格的副本,只要原始电子表格发生更改,该副本就会自动更新。
例如
//open Spreadsheet A by Id
var sheetA = SpreadsheetApp.openById('ID_of_Spreadsheet_A');
//Copy Spreadsheet A and call the copy Spreadsheet B
sheetA.copy("Spreadsheet B");