google-apps-scriptgoogle-sheetsgoogle-sheets-formulazapier

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


So, this brings me back to my title question.

How can I automatically copy values of a new row populated with Zapier in (Master Sheet Columns A:J) to (Active Sheet Columns A:J) in the same workbook with Google sheets?

Thanks

function myFunction() {

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

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

Solution

  • Easiest method is just to add

    =Master!A1
    

    in Active!A1 and autofill it to Active!A1:J10000 or something. Now you can use filters or array formulas as necessary in Active sheet.