Skip to main content

Bulk create Google Calendar events from Google Sheets

Workflow preview

Workflow preview
100%
Bulk create Google Calendar events from Google Sheets preview
Open on n8n.io

1. Workflow Overview

What This Workflow Does This workflow automates the process of creating Google Calendar events from a Google Sheet. It ensures each row in the sheet is evaluated for its current status and: Creat...

Best for

  • File Management automation workflows
  • intermediate n8n builders looking for reusable templates

Tools used

n8n-nodes-base.manualtrigger, n8n-nodes-base.googlesheets, n8n-nodes-base.googlecalendar, n8n-nodes-base.if, n8n-nodes-base.stickynote, n8n-nodes-base.noop

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Agus Narestha.

Original n8n.io source

1.1 Workflow description

Title
Bulk create Google Calendar events from Google Sheets
Workflow name
Bulk create Google Calendar events from Google Sheets

✅ What This Workflow Does

This workflow automates the process of creating Google Calendar events from a Google Sheet. It ensures each row in the sheet is evaluated for its current status and:

  • Creates new events in Google Calendar for rows marked as pending or failed.
  • Updates the Google Sheet with the result: Created, Failed, or Duplicate.
  • Handles errors gracefully and prevents duplicate event creation.

🛠️ How It Works

  1. Manual Trigger: Start the workflow.
  2. Read Sheet: Fetch all rows from the configured Google Sheet.
  3. Check Status:
  • If status is pending or failed, continue to event creation.
  • If already created, update sheet as duplicate.
  1. Create Event: Attempt to create a Google Calendar event using the row’s data.

  2. Check for Errors:

  • If the creation succeeds, update the sheet as Created.

  • If it fails, update the sheet as Failed.

  1. Update Sheet: Reflect the result (Created, Failed, Duplicate) for each row.

This ensures a reliable workflow where the Google Sheet and Google Calendar remain synchronized without manual intervention.

🧰 Setup Requirements

To run this workflow, you need:

  1. n8n account with workflow access.

  2. Google Sheets OAuth2 credentials connected to your Google Sheet.

  3. Google Calendar OAuth2 credentials connected to the target calendar.

  4. A properly formatted Google Sheet with columns for event details (see below).

  5. The workflow nodes must be authorized to read and write to both Google Sheets and Google Calendar.

🧩 Key Features

  • Manual Trigger: Start the workflow anytime.

  • Google Sheets Read/Write: Reads event data and updates status after processing.

  • Google Calendar Integration: Automatically creates events.

  • Error Handling: Detects errors during event creation and logs them in the sheet.

  • Duplicate Prevention: Rows already processed are marked as duplicates.

  • Dynamic Data Mapping: Pulls event details directly from the sheet to Google Calendar.

📂 Input Spreadsheet Format

The workflow expects a sheet with the following columns:

|summary|start|end|description|location|attendees|status| |-|-|-|-|-|-|-|- |Meeting A|2026-03-20T10:00:00+08:00|2026-03-20T11:00:00+08:00|Client discussion|Google Meet|[email protected]|pending |Meeting B|2026-03-21T10:00:00+08:00|2026-03-21T11:00:00+08:00|Client discussion|Zoom|[email protected],[email protected]|pending |Meeting C|2026-03-22T10:00:00+08:00|2026-03-22T11:00:00+08:00|Client discussion|Google Meet|[email protected]|created

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Manual Trigger

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 2 - Read Sheet

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4

Block 3 - Create Event

Type / Role
n8n-nodes-base.googleCalendar - googleCalendar
Config choices
Version 1

Block 4 - Update Sheet (Created)

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4

Block 5 - Update Sheet (Failed)

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4

Block 6 - Check Status Spreadsheets

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 7 - Check If Error

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 8 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 9 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 10 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - No Operation, do nothing

Type / Role
n8n-nodes-base.noOp - noOp
Config choices
Version 1

Block 12 - Sticky Note4

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Bulk create Google Calendar events from Google Sheets
Complexity intermediate
Nodes 13
Categories File Management
Author Agus Narestha
Published 17 Mar 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/14107/14107.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Bulk create Google Calendar events from Google Sheets do?

What This Workflow Does This workflow automates the process of creating Google Calendar events from a Google Sheet. It ensures each row in the sheet is evaluated for its current status and: Creat...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your File Management use case.