如何自动将填充有 zapier 的新行的值复制到具有 google sheets 的同一工作簿中的另一个 sheet?

How to automaticaly copy values of a new row populated with zapier to another sheet in same workbook with google sheets?

所以,这让我回到我的标题问题。

如何自动将在(Master Sheet 列 A:J 中用 Zapier 填充的新行的值自动复制到(Active Sheet 列A:J) 在与 Google sheets?

相同的工作簿中

谢谢

function myFunction() {

// Get Source Spreadsheet
var source = SpreadsheetApp.getActiveSpreadsheet(Master);

// Get Source Sheet from Spreadsheet
var source_sheet = source.getActiveSheet(Active);

最简单的方法就是添加

=Master!A1

in Active!A1 并自动填充到 Active!A1:J10000 之类的。现在您可以根据需要在 Active sheet.

中使用过滤器或数组公式