🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 21, 2026

Google Sheets + Slack: flag negative reviews fast

Lisa Granqvist Partner Workflow Automation Expert

You spot a bad review three days late, after it’s already cost you a customer. Meanwhile, your “reviews sheet” keeps growing, and nobody has time to read every line.

This hits marketing managers and support leads first, honestly. But founders and small teams feel it too. With this Sheets Slack alerts automation, negative reviews get flagged quickly so you can respond the same day, not “when you get to it.”

You’ll learn how the workflow monitors new rows in Google Sheets, tags sentiment automatically, and pushes the right alerts into Slack so follow-ups don’t slip.

How This Automation Works

Here’s the complete workflow you’ll be setting up:

n8n Workflow Template: Google Sheets + Slack: flag negative reviews fast

Why This Matters: Negative Reviews Hide in Plain Sight

Most teams don’t have a “review problem.” They have a visibility problem. Reviews come in from different places, someone pastes them into a Google Sheet, and then… nothing. The sheet becomes a graveyard of customer feedback you meant to handle. By the time someone notices a clearly negative comment (“broken,” “refund,” “bad service”), the customer has already churned, and the team is stuck doing reactive cleanup instead of a quick fix and a thoughtful response.

The friction compounds. It starts small, then it becomes a weekly fire drill.

  • Someone has to manually read each new row, which quietly turns into a daily “I’ll do it later” task.
  • Important reviews don’t get triaged, so support and marketing work off gut feel instead of real signals.
  • A single missed negative review can snowball into public back-and-forth that you could’ve prevented with a fast reply.
  • Reporting gets messy because sentiment is inconsistent, which makes trend tracking feel unreliable.

What You’ll Build: Auto-Tag Review Sentiment and Alert Slack

This workflow watches a Google Sheet where new reviews are added (often by a teammate copying them in from Google, Trustpilot, email, or social). When a new row appears, n8n pulls the review text and runs a lightweight sentiment check in a Code step. It looks for common positive and negative keywords, then labels the row as Positive, Negative, or Neutral. Finally, the workflow updates the same row, writing the sentiment back into a dedicated “Sentiment” column so your sheet stays clean and usable over time.

In practice, it becomes a simple pipeline. A new review lands in Sheets, analysis happens automatically, and your team gets a clear tag to drive follow-up. If you want Slack notifications, you can extend the workflow to post alerts when sentiment is negative (and only then), which keeps noise low.

What You’re Building

Expected Results

Say you log about 15 reviews per week into a Google Sheet. Manually scanning and tagging them takes maybe 3–5 minutes each, so you’re spending about an hour a week just labeling sentiment, plus another hour chasing “who should reply?” With this workflow, adding the row is still the same, but sentiment tagging happens automatically in under a minute (it polls every minute by default). If you add a Slack alert for negatives, you usually go from “someone notices later” to “someone sees it now,” and that’s the real win.

Before You Start

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Google Sheets for storing incoming review rows
  • Slack to alert your team on negative sentiment
  • Google Sheets OAuth credential (create it inside n8n Credentials)

Skill level: Beginner. You’ll connect Google Sheets, paste a workflow, and map a few fields.

Want someone to build this for you? Talk to an automation expert (free 15-minute consultation).

Step by Step

A new row appears in Google Sheets. The workflow uses a Google Sheets trigger to watch a specific sheet and fire when a fresh review is added. In many teams, that row is created by whoever is “on reviews” that day.

The review text is evaluated. n8n passes the row into a Code step that checks the text for simple keywords tied to positive or negative sentiment. It’s not trying to be perfect. It’s trying to sort your inbox fast.

The sentiment label is written back into the sheet. The workflow updates the same row, filling in a “Sentiment” column so the sheet becomes a reliable dataset, not a raw dump.

Negative items can be pushed to Slack. Add a Slack message action after the sentiment check (and gate it with a simple “If sentiment is Negative”). Then your team gets a clean alert with the review text and a link back to the row.

You can easily modify the keyword rules to match your niche and tone. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Sheets Row Event Trigger

Set up the trigger that watches for new rows in your Google Sheet.

  1. Add the Sheets Row Event Trigger node to your workflow.
  2. Set Event to rowAdded.
  3. Choose the target spreadsheet in Document and the worksheet in Sheet Name.
  4. Credential Required: Connect your googleSheetsTriggerOAuth2Api credentials.

Step 2: Connect Google Sheets

Ensure the update node can write sentiment back to the same spreadsheet.

  1. Open the Modify Sheet Sentiment node.
  2. Confirm Document and Sheet Name point to the same sheet used by the trigger.
  3. Credential Required: Connect your googleSheetsOAuth2Api credentials.

Step 3: Set Up Evaluate Review Tone

Use a code step to analyze review text and generate a sentiment label.

  1. Add the Evaluate Review Tone node and set JavaScript Code to the provided script in the workflow.
  2. Verify the code reads the fields Review Text and Review ID from the incoming row.
  3. Ensure the output JSON contains sentiment and reviewId as returned in the script.

Step 4: Configure Modify Sheet Sentiment

Update the matching row in the sheet with the calculated sentiment.

  1. Set Operation to update.
  2. In Columns, set Review ID to ={{ $json.reviewId }}.
  3. Keep Matching Columns set to Review ID so the row is updated correctly.
  4. Map the Sentiment column to the output from Evaluate Review Tone (for example, use ={{ $json.sentiment }} if adding it to the mapping).

If the update does not change the expected row, verify that the incoming Review ID exactly matches the values in your sheet.

Step 5: Test and Activate Your Workflow

Validate the end-to-end flow and enable it for production use.

  1. Click Execute Workflow and add a new row to your Google Sheet to trigger Sheets Row Event Trigger.
  2. Confirm Evaluate Review Tone outputs a sentiment value and a reviewId.
  3. Verify Modify Sheet Sentiment updates the correct row’s Sentiment cell.
  4. Toggle the workflow to Active to run continuously.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Troubleshooting Tips

  • Google Sheets credentials can expire or lack spreadsheet access. If things break, check the credential inside n8n and confirm the Google account can edit that specific sheet.
  • If you’re relying on polling (the default is about once per minute), new rows might not trigger instantly. If “speed” matters, tighten the schedule carefully or switch to a different ingestion method, then retest.
  • Basic keyword sentiment can misclassify sarcasm or industry terms. Update your keyword list and add a few “exception” words early, or you will be cleaning tags by hand later.

Quick Answers

What’s the setup time for this Sheets Slack alerts automation?

About 30 minutes if your Google Sheet is ready.

Is coding required for this review sentiment tagging?

No. The workflow includes a Code step, but you can use it as-is. Most of the work is just connecting Google Sheets and mapping the right columns.

Is n8n free to use for this Sheets Slack alerts workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in Slack (usually free) and any optional AI costs if you upgrade later (OpenAI usage is typically a few dollars a month at small volumes).

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I modify this Sheets Slack alerts workflow for different use cases?

Yes, and you should. You can adjust the “Evaluate Review Tone” Code node to use your own keyword list, or swap the sentiment logic entirely by replacing that step with an OpenAI Chat Model node. Common tweaks include adding a “Needs follow-up” flag, routing only negatives to Slack, and tagging “refund” or “billing” reviews into a separate category.

Why is my Google Sheets connection failing in this workflow?

Usually it’s an OAuth permission issue or the credential is tied to the wrong Google account. Reconnect the Google Sheets credential in n8n, then confirm that same Google user can edit the spreadsheet you’re watching. Also double-check the Sheet ID and the selected tab, because pointing to the wrong file looks like “it’s broken” even when the credential is fine.

What volume can this Sheets Slack alerts workflow process?

Most small teams can run hundreds of new rows a day without issues.

Is this Sheets Slack alerts automation better than using Zapier or Make?

Often, yes, especially once you want more control. n8n makes it easier to keep the logic in one place, update the same Google Sheets row reliably, and add conditions like “only alert Slack on Negative” without paying extra per branch. Zapier and Make are great for quick two-step zaps, but they can get expensive or awkward when you add logic, retries, and data cleanup. If you’re unsure, pick the tool you’ll actually maintain. Talk to an automation expert and we’ll help you choose.

Once this is running, your reviews sheet becomes a live signal instead of a dumping ground. The workflow handles the repetitive sorting so you can spend your time on the responses that actually protect revenue.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal