Draft AI replies to new Google Business reviews and alert your team

Step 8 of 12

08 / 12Google Sheets

Log every review to Google Sheets

Add a Google Sheets node named Log to Google Sheets appending a row to the Reviews sheet for every review, whether it went down the negative or positive branch, recording the date, rating, text, source, reviewer, review ID and the AI's drafted response.

The n8n panel for: Log every review to Google Sheets6 things to set here
  1. 1Open the Google Sheets nodedouble-click it on the canvas
  2. 2Operationcopy the value below
  3. 3Documentpaste as an expression
  4. 4Sheetcopy the value below
  5. 5Datepaste as an expression
  6. 6Check before moving onA row appears in the Reviews sheet for every test review, from both branches of the If node.
Google Sheets panel in n8nTap to enlarge
Operation
Append
Documentexpression
{{ $env.GOOGLE_SHEET_ID }}
Sheet
Reviews
Dateexpression
{{ new Date().toISOString() }}
Ratingexpression
{{ $json.rating }}
Reviewexpression
{{ $json.reviewText }}
Sourceexpression
{{ $json.source }}
Reviewerexpression
{{ $json.reviewerName }}
Review IDexpression
{{ $json.reviewId }}
AI Responseexpression
{{ $json.output }}
Checkpoint
A row appears in the Reviews sheet for every test review, from both branches of the If node.