-
Notifications
You must be signed in to change notification settings - Fork 8
Google Sheets Export
Alex Bochkov edited this page Nov 28, 2025
·
2 revisions
Export the current Grid results directly into Google Sheets.
Use these steps to allow the extention to export query results to Google Sheets using your own Google Cloud project.
- Visit https://console.cloud.google.com/projectcreate.
- Enter a project name (for example, AxialSqlToolsSheetsExport) and create the project.
- Switch to the new project from the project picker.
- In the Cloud Console, open APIs & Services → Library.
- Search for Google Sheets API and click Enable for your project.
- Go to APIs & Services → OAuth consent screen.
- Choose External user type and click Create.
- Fill out the app information (app name, user support email, developer contact info) and save.
- Under Scopes, the export flow only needs the default Google Sheets scope (
.../auth/spreadsheets), which is automatically requested by the tool. - In Test users, click Add users and add the Google accounts that should be allowed to sign in while the app is unpublished.
- Save and Publish to the Testing state (do not move to Production unless you intend to verify the app with Google).
- Open APIs & Services → Credentials and click Create credentials → OAuth client ID.
- Choose Desktop app as the application type and provide a name.
- Download the client configuration JSON.
- In the extension settings, populate Client ID and CLient Secret from the downloaded OAuth client JSON.
- Click "Authorize Google Sheets", a browser window will prompt you to sign in. Use one of the test users you added earlier.
- Done.