Apply the fix
Set the range explicitly to cover every column that could be edited, using a generous bound rather than an exact one — a too-narrow range is the single most common reported cause of missed updates, and a slightly over-broad range costs a small amount of polling overhead, not correctness.
If activation itself fails with a permissions message, reconnect the Google Sheets credential and confirm the OAuth consent screen shows full Sheets access rather than a restricted or read-only scope that may have been granted for a different, less demanding node.
If both range and scope are confirmed correct and the trigger still silently misses edits, check n8n's own release notes around your installed version for Google Sheets Trigger fixes — this has been a recurring area of version-specific bugs reported directly to n8n's GitHub.
Watching multiple tabs or multiple sheets adds polling overhead you should plan for
Each Google Sheets Trigger polls its configured range on its own schedule, independent of any other trigger. If a workflow set needs to watch several tabs across one spreadsheet, or several spreadsheets entirely, each one is a separate polling cycle consuming its own share of the per-minute API quota described in the rate-limit guide below — this is worth accounting for before building many parallel Row Updated triggers on the same account, since the quota is shared across all of them, not allocated per trigger.
Sources checked for this guide
n8n's own documentation for this trigger explicitly separates polling-based detection from a push model, which the community threads and GitHub issue below confirm in practice.
Frequently asked questions
Row Added works fine — why does Row Updated fail on the exact same sheet?
The two use different detection logic. Row Added only tracks row count; Row Updated compares cell contents inside a defined range across polling intervals, so it fails silently if the range does not cover the edited columns.
I set a range and it still misses some edits — what else could it be?
Confirm the range is generous enough (a full-sheet bound like A1:Z1000 rather than an exact guess), and check whether your installed n8n version has a known Google Sheets Trigger issue reported around that release.
Activation fails with a permissions error before I even test an edit — what does that mean?
This usually points to the Google Sheets OAuth credential having a restricted or read-only scope rather than full Sheets access. Reconnect the credential and confirm the consent screen grants full access.
Does watching multiple sheets with separate triggers cost more quota?
Yes — each trigger polls independently and each poll counts against the same shared per-minute Sheets API quota for your project and user. Many parallel triggers on one account can approach that limit faster than expected.