Skip to content

Copy Spreadsheet (Google Sheets) v1.0.0 Help

Makes a copy of a spreadsheet in the specified location.

How can I use the Step?

Use the Step to make a copy of the spreadsheet and save it to a root or specific folder (via its ID) in your Google Drive. This Step helps to backup data and manage its versions. Having multiple copies lets you restore previous versions if you accidentally modify or delete something. In the case of collaborative work, making copies can help distribute specific versions to different people or groups. Each person can work on their copy without affecting the original file, which minimizes the risk of data conflicts. You can also use copies as templates for generating reports or conducting data analysis. You can customize each copy with different data inputs or parameters to explore various scenarios or compare different data sets without altering the original template.

How does the Step work?

You authorize the Step with the option connected to the Google Sheets/drive account and provide the original spreadsheet ID and location of its copy. You can configure the Flow behavior if a spreadsheet with the same title already exists within the specified location. As a result, the Step creates a spreadsheet according to the provided details and returns Spreadsheet ID, Title, and Destination Folder ID.

Prerequisites

To enable the use of any Step from the Google Sheets toolkit, complete the Prerequisites.

Authorization

First, you must select the Authorization type. The Google Sheets, Google Drive, and Google Calendar toolkits support two types:

  • OAuth 2.0: to authenticate as an end user and access user data in your app. It requires your app to request and receive consent from the user.
  • Service account: to authenticate as a robot service account or to access resources on behalf of Google Workspace or Cloud Identity users through domain-wide delegation. A service account is a special kind of account used by an application rather than a person. Read more in the Service accounts overview.

You can authorize the Step in two ways:

  • Inherit from the previous step: use the already configured authorization with the same type from the last executed Step of the Google Sheets/Drive/Calendar toolkits in the Flow. If you previously configured authorization in another Step from the toolkits and its authorization type matches the current Step, the Inherit from the previous step option is the default. If this option is selected, but there is no Step with the matching authorization type in the Flow, the Step results in an error.
  • Select authorization in the current step: choose authorization from the list of existing ones or create a new one. The gear button contains options to add a new authorization, delete an existing one, or refresh the list of added authorizations. Click Edit to update the fields of a service account authorization. An OAuth 2.0 authorization can be reauthorized.

Warning

If the user created an external app in their OAuth Consent Screen, the created authorization needs to be reauthorized in any Flow once approximately every 7 days.

If you need to create a new authorization, complete the following steps:

  1. Select the Authorization type in the corresponding dropdown.
  2. Click the Select authorization in current step.
  3. Click the Gear button, then Add. Alternatively, select Create new authorization in the dropdown.
  4. A modal window for creating a new authorization pops up. Follow the instructions in the modal's collapsible. When finished, the created Authorization name will be added to the list in the dropdown.
  5. Select the corresponding Authorization name in the Select authorization in current step dropdown.

Spreadsheet settings

In this section, you must enter the Spreadsheet ID (a unique identifier) of a spreadsheet you want to copy. You can use the Merge field to provide the value. Be aware that an incorrect ID results in an error. Use the List Spreadsheets in Folder (Google Sheets) Step to get the spreadsheet ID, or see Google Sheets API Overview for info.

Destination settings

Here, you must choose a Location on the Google Drive where you want to save the spreadsheet copy. The default location is the Root folder, which is the main page of your Google Drive account. If you want to save the copy in a specific folder, select this option and provide the Folder ID value.

Note

Folder ID is a unique identifier of an existing folder in a Google Drive account. You can find it in the URL of your folder, after folder/. Alternatively, you can extract the ID as a Merge field value using the List Items in Folder (Google Drive) or Find Items (Google Drive) Steps.

Conflict handling

In this section, you can configure the Flow behaviour in case a spreadsheet with the specified title already exists. By default, the Flow proceeds down the exists exit.

In addition, you have the following alternatives to manage the case:

  • Apply a New title provided in the new field that appears.
  • Skip this Step execution.
  • Proceed through the Error exit.

Merge field settings

The Step returns the result as a JSON object and stores it under the provided Merge field name. The output includes the following properties:

KeyTypeDescription
spreadsheetIdstringId of spreadsheet copy generated by Google Sheets.
titlestringThe name of spreadsheet copy.
destinationFolderIdstringId of a folder where the copy is saved.

To learn more about Merge fields and how to work with them, see our Merge fields guide.

Output example

The output has the following structure:

json
{
    "spreadsheetId": "12xvZsSEMx9tt8UOVUfQc7ciIYQRqJi2y7bX77Q",
    "title": "Test",
    "folderId": "root"
}
{
    "spreadsheetId": "12xvZsSEMx9tt8UOVUfQc7ciIYQRqJi2y7bX77Q",
    "title": "Test",
    "folderId": "root"
}

Error handling

By default, the Step handles errors using a separate exit. If any error occurs during the Step execution, the Flow proceeds down the error exit. For more information, see Error and timeout handling.

Note

If you disable the Handle error toggle, the Step does not handle errors. With this setup, if any error occurs during the Step execution, the Flow fails immediately after exceeding the Flow's timeout. To prevent the Flow from being suspended while continuing to handle errors in the Flow, place the Flow Error Handling Step before the main Flow logic.

Reporting

The Step automatically generates Reporting events during its execution, allowing for real-time tracking and analysis of its performance and user interactions. To learn more, see Reporting events.

Log level

By default, the Step inherits its log level from Flow's log level. You can change the Step's log level by selecting an appropriate option from the Log level list.

Tags

You can specify tags to organize the collected dat and filter session information when generating reports.

Service dependencies

  • flow builder v3.49.1
  • event-manager v2.0.1
  • deployer v2.18.0

Release notes

v1.0.0

  • Initial release