Move data

How to move an updated row to top or bottom of the sheet

You can use Move Row action to move the latest response to top or bottom of the sheet.

Steps:

  1. Select an update trigger on the sheet
  2. Define a Move Row action
  3. Select the same sheet in the sheet field of the action
  4. Select “append top” or “append bottom” accordingly in Row Position option

How to move a row to a different spreadsheet / workbook

You can specify the spreadsheet URL or ID in the target sheet field of Move Row action.

  1. Find the spreadsheet URL. ID is part of the URL.
  2. Enter the spreadsheet URL or ID and “#” prior to the sheet name. For example, YOUR_SPREADSHEET_ID#sheet name.

How to copy part of the updated row to another sheet

To copy part of the row, you need to use Create Row action.

Steps:

  1. Select an update trigger on the sheet
  2. Define a Create Row action with the target sheet specified
  3. Specify the columns you want to copy and use column variables to pull data from the row

How to distribute rows to multiple sheets based on column value

There are cases when you want to distribute data from the master sheet to multiple sub sheets. Let’s say the sub sheet is determined using the value in column H. The data under “sales” category will be moved to “sales” sheet. The data under “support” category will go to “support” sheet. And so forth.

You could create multiple rules to do it. However it is not optimal due to the duplication of rules. When there is a new category, you have to create a new rule.

There is a way you can achieve this flexiblly using variable:

  1. Select any trigger that suits your needs
  2. Define a Move Row action
  3. Specify the target sheet field as {column_H}

You can also specify the sheet name with string concatination. For example: team-{column_H}-queue.

Last modified August 14, 2023