This workflow follows the Google Sheets → Slack recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Weekly Campaign Metrics \u00e2\u0086\u0092 Slack",
"nodes": [
{
"id": "a1b2c3d4-0001-0001-0001-000000000001",
"name": "Every Monday 9am UTC",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.3,
"position": [
240,
300
],
"parameters": {
"rule": {
"interval": [
{
"field": "cronExpression",
"expression": "0 9 * * 1"
}
]
}
}
},
{
"id": "a1b2c3d4-0002-0002-0002-000000000002",
"name": "Get Campaign Metrics",
"type": "n8n-nodes-base.googleSheets",
"typeVersion": 4.7,
"position": [
460,
300
],
"credentials": {
"googleSheetsOAuth2Api": {
"name": "<your credential>"
}
},
"parameters": {
"resource": "sheet",
"operation": "read",
"documentId": {
"mode": "id",
"value": "1ABC123"
},
"sheetName": {
"mode": "name",
"value": "Campaign Metrics"
},
"range": "A:D"
}
},
{
"id": "a1b2c3d4-0003-0003-0003-000000000003",
"name": "Summarize Totals",
"type": "n8n-nodes-base.summarize",
"typeVersion": 1.1,
"position": [
680,
300
],
"parameters": {
"fieldsToSummarize": {
"values": [
{
"aggregation": "sum",
"field": "Leads"
},
{
"aggregation": "sum",
"field": "Spend"
},
{
"aggregation": "sum",
"field": "Conversions"
}
]
},
"options": {
"outputFormat": "singleItem"
}
}
},
{
"id": "a1b2c3d4-0004-0004-0004-000000000004",
"name": "Post to Slack",
"type": "n8n-nodes-base.slack",
"typeVersion": 2.4,
"position": [
900,
300
],
"credentials": {
"slackApi": {
"name": "<your credential>"
}
},
"parameters": {
"resource": "message",
"operation": "post",
"select": "channel",
"channelId": {
"mode": "name",
"value": "#marketing-weekly"
},
"text": "=\u00f0\u009f\u0093\u008a *Weekly Campaign Metrics Summary*\n\n\u00e2\u0080\u00a2 Total Leads: {{ $json.sum_Leads }}\n\u00e2\u0080\u00a2 Total Spend: ${{ $json.sum_Spend }}\n\u00e2\u0080\u00a2 Total Conversions: {{ $json.sum_Conversions }}"
}
}
],
"connections": {
"Every Monday 9am UTC": {
"main": [
[
{
"node": "Get Campaign Metrics",
"type": "main",
"index": 0
}
]
]
},
"Get Campaign Metrics": {
"main": [
[
{
"node": "Summarize Totals",
"type": "main",
"index": 0
}
]
]
},
"Summarize Totals": {
"main": [
[
{
"node": "Post to Slack",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
googleSheetsOAuth2ApislackApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Weekly Campaign Metrics â Slack. Uses googleSheets, slack. Scheduled trigger; 4 nodes.
Source: https://github.com/alvarocubaa/n8n-workflow-builder/blob/4eff3d38299486ce819c0d6d28c7df5bf6c7236f/examples/gsheet_slack.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Watch target companies for C-level and VP hiring signals, then send AI-personalized outreach emails when leadership roles are posted.
Monitor customers for competitor tech adoption via PredictLeads and alert CSMs to prevent churn.
This workflow is designed for marketing teams, data analysts, and business owners who need to consistently track key performance indicators (KPIs). It saves hours of manual data collection and reporti
Streamline sales prioritization by automatically identifying, scoring, and routing high-value leads from GoHighLevel CRM to your sales team. This workflow scores contacts daily, flags top prospects, a
Weekly Marketing Campaign Report. Uses salesforce, googleSheets, slack. Scheduled trigger; 5 nodes.