Skip to main content

Track Excel 365 changes and approvals with Telegram and Google Sheets logging

Workflow preview

Workflow preview
100%
Track Excel 365 changes and approvals with Telegram and Google Sheets logging preview
Open on n8n.io

1. Workflow Overview

Track changes and approvals in Excel 365 Overview This workflow monitors an Excel 365 sheet every minute and detects new, updated, and deleted rows using a unique ID column. It compares the curr...

Best for

  • Document Extraction automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.microsoftexcel, n8n-nodes-base.code, n8n-nodes-base.stickynote, n8n-nodes-base.googlesheets, n8n-nodes-base.telegram, n8n-nodes-base.scheduletrigger, n8n-nodes-base.if, n8n-nodes-base.switch

Source and attribution

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

Original n8n.io source

1.1 Workflow description

Title
Track Excel 365 changes and approvals with Telegram and Google Sheets logging
Workflow name
Track Excel 365 changes and approvals with Telegram and Google Sheets logging

Track changes and approvals in Excel 365

📌 Overview

This workflow monitors an Excel 365 sheet every minute and detects new, updated, and deleted rows using a unique ID column. It compares the current dataset with the previous snapshot and identifies field-level differences.

When changes are detected, the workflow filters rows that require approval (Status = “Waiting Approval”), sends structured notifications, and optionally logs every field-level change into an audit sheet (Excel or Google Sheets).

The configuration layer allows you to define the ID column, ignored fields, and audit logging behavior without modifying the comparison logic.

This template is suitable for approval tracking, operational monitoring, and lightweight compliance logging.

How it works

  1. Runs every minute using a schedule trigger
  2. Reads rows from Excel 365
  3. Normalizes and stores a snapshot
  4. Compares with the previous state
  5. Detects new, updated, and deleted rows
  6. Filters rows with “Waiting Approval” status
  7. Sends structured notifications
  8. Logs changes if audit logging is enabled

Setup steps

  1. Configure Microsoft Excel credentials
  2. Ensure your sheet contains a unique ID column
  3. Update the Environment Config node 4.(Optional) Configure Google Sheets credentials for audit logging
  4. Activate the workflow

🚀 Features

⏱ Scheduled Monitoring

  • Runs automatically every 1 minute
  • Near real-time Excel monitoring
  • Prevents unnecessary execution when no changes are detected

🔍 Row-Level Change Detection

Detects:

  • ✅ New rows
  • ✏️ Updated rows
  • ❌ Deleted rows

Uses a unique ID field per row for accurate tracking.

🧠 Field-Level Comparison

  • Compares previous vs current values
  • Identifies exactly which fields changed
  • Outputs structured change data
  • Prevents false positives via data normalization

⚙️ Environment Configuration Layer

Centralized configuration node allows easy customization without modifying core logic.

Configurable options include:

  • idField
  • ignoreFields
  • monitorOnly
  • firstRunSilent
  • enableAuditLog

No hardcoded logic required.

🛑 Approval Validation Layer

  • Filters rows where Status = "Waiting Approval"
  • Sends notifications only for relevant approval cases
  • Prevents unnecessary alerts

🔔 Smart Notification System

  • Sends formatted change notifications
  • Includes:
  • Change Type (NEW / UPDATED / DELETED)
  • Row ID
  • Field-level old → new values

Fully customizable message formatting. ⸻

📊 Optional Audit Logging

If enabled in the Environment Config:

  • Converts each field-level change into structured audit rows
  • Appends logs to:
  • Excel 365 (Audit Sheet)
  • Google Sheets (External Log)

Audit Log Structure

Timestamp ChangeType RowID Field OldValue New Value

Designed for compliance and tracking purposes.

📦 Use Cases

  • Internal approval tracking
  • Financial data monitoring
  • Sales pipeline control
  • Procurement workflows
  • Excel-based compliance systems
  • SME automation systems

🧩 Requirements

  • Microsoft 365 (Excel Online – Business)
  • n8n (Cloud or Self-hosted)
  • Microsoft credentials configured in n8n
  • Telegram Bot
  • (Optional) Google Sheets credentials for audit logging

🔧 Configuration Guide

All system behavior is controlled from the Environment Config node.

Example configuration structure:

{
 CONFIG: {
 idField: "ID",
 ignoreFields: ["UpdatedAt", "LastModified"],
 monitorOnly: null,
 firstRunSilent: true,
 enableAuditLog: true
 }
}

You can customize:

  • Which column acts as unique ID
  • Which fields to ignore
  • Which fields to monitor exclusively
  • Whether to enable audit logging
  • Whether first run should be silent

🟢 First Run Behavior

On first execution:

  • The workflow initializes internal snapshot storage
  • No mass notification is sent (if firstRunSilent = true)

This prevents false “NEW row” alerts during setup.

🏢 Who Is This For?

  • Operations teams
  • Finance departments
  • SMEs using Excel as core system
  • Automation consultants
  • Businesses requiring lightweight audit tracking

💡 Why This Workflow?

Unlike simple Excel polling workflows, this solution:

  • Tracks changes at field level
  • Supports approval-based filtering
  • Includes structured audit logging
  • Avoids duplicate alerts
  • Is fully configurable
  • Designed for production usage

This is not just an Excel notifier — it is a structured Change Tracking & Approval Monitoring System built on n8n.```language


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 - Get rows

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

Block 2 - Normalize Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 3 - Sticky Note

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

Block 4 - Sticky Note1

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

Block 5 - Append Log to Excel

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

Block 6 - Append Log to Sheet

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

Block 7 - Environment Config

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Sticky Note2

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

Block 9 - Sticky Note3

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

Block 10 - Notification Approval

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 11 - Sticky Note4

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

Block 12 - Run every 1 minute

Type / Role
n8n-nodes-base.scheduleTrigger - scheduleTrigger
Config choices
Version 1.3

Block 13 - Check if changes exist

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

Block 14 - Check if audit logging is enabled

Type / Role
n8n-nodes-base.switch - switch
Config choices
Version 3.3

Block 15 - Compare previous and current snapshot

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 16 - Transform changes for notification

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 17 - Build audit log rows

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 18 - Filter rows with waiting approval

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 19 - Send notification

Type / Role
n8n-nodes-base.telegram - telegram
Config choices
Version 1.2

Block 20 - Sticky Note5

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

Block 21 - Sticky Note6

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

3. Summary Table

Workflow Track Excel 365 changes and approvals with Telegram and Google Sheets logging
Complexity advanced
Nodes 21
Categories Document Extraction, AI Summarization
Author Ramdoni
Published 25 Feb 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/13716/13716.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 Track Excel 365 changes and approvals with Telegram and Google Sheets logging do?

Track changes and approvals in Excel 365 Overview This workflow monitors an Excel 365 sheet every minute and detects new, updated, and deleted rows using a unique ID column. It compares the curr...

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 Document Extraction, AI Summarization use case.