AI 인사이트가 포함된 월간 재무 보고서
중급
이것은Document Extraction, AI Summarization분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 Gmail, OpenAi, Function, GoogleSheets, ScheduleTrigger 등의 노드를 사용하며. Google Sheets, GPT-4 분석 및 Gmail을 사용한 자동화된 월간 재무 보고서
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •OpenAI API Key
- •Google Sheets API 인증 정보
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "bUnFjkLevdnP1zo7",
"meta": {
"instanceId": "a287613f1596da776459594685fbf4e2b4a12124f80ab8c8772f5e37bff103ae",
"templateCredsSetupCompleted": true
},
"name": "Finance Monthly Report with AI Insight",
"tags": [],
"nodes": [
{
"id": "c9b7416f-8164-4869-8c8a-3ae49f868334",
"name": "재무 거래 내역 가져오기 (Google Sheets)",
"type": "n8n-nodes-base.googleSheets",
"position": [
380,
140
],
"parameters": {
"range": "FinanceSummary!A:E",
"options": {},
"sheetId": "<YOUR_GOOGLE_SHEET_ID_HERE>"
},
"credentials": {
"googleSheetsOAuth2Api": {
"id": "MSnszF5oRAiSGHDo",
"name": "temp"
}
},
"description": "Reads monthly finance transaction data from the specified Google Sheet.",
"typeVersion": 2
},
{
"id": "6b2dbe34-e3f0-4ca3-b5ca-3a6c3e027ad2",
"name": "전월 거래 내역 필터링",
"type": "n8n-nodes-base.function",
"position": [
600,
140
],
"parameters": {
"functionCode": "// Filter transactions for the previous month\nconst rows = items.map(item => item.json);\n\nconst now = new Date();\nconst lastMonthStart = new Date(now.getFullYear(), now.getMonth() - 1, 1); // First day of previous month\nconst lastMonthEnd = new Date(now.getFullYear(), now.getMonth(), 0); // Last day of previous month\n\nconst filtered = rows.filter(row => {\n // Ensure 'Date' column exists and is a valid date format\n if (!row.Date) return false;\n const date = new Date(row.Date); \n return date >= lastMonthStart && date <= lastMonthEnd;\n});\n\nreturn filtered.map(row => ({ json: row }));"
},
"description": "Filters the raw data to only include transactions from the previous full month.",
"typeVersion": 1
},
{
"id": "869519eb-0879-4f0d-8a21-4035b69df097",
"name": "AI 재무 인사이트 생성",
"type": "n8n-nodes-base.openAi",
"position": [
820,
140
],
"parameters": {
"model": "gpt-4",
"prompt": "You are a finance assistant. Analyze the following transaction data. Calculate the total income and total expense for the period. Then, provide 3 concise bullet-point financial insights based on the data. Structure your output clearly:\n\nTotal Income: [Amount]\nTotal Expense: [Amount]\nKey Insights:\n- [Insight 1]\n- [Insight 2]\n- [Insight 3]\n\nTransactions:\n{{JSON.stringify($json, null, 2)}}",
"options": {},
"requestOptions": {}
},
"credentials": {
"openAiApi": {
"id": "WbMi3ZLLBnECFAAV",
"name": "Temp"
}
},
"description": "Uses OpenAI (GPT-4) to generate a summary of income, expenses, and key financial insights.",
"typeVersion": 1
},
{
"id": "d8d4588b-9761-4bef-a427-ff3282c1b12e",
"name": "월간 재무 보고서 이메일 발송",
"type": "n8n-nodes-base.gmail",
"position": [
1040,
140
],
"parameters": {
"subject": "Monthly Finance Summary and AI Insights",
"additionalFields": {}
},
"credentials": {
"gmailOAuth2": {
"id": "QFfaHpKmgq4YPiRN",
"name": "Temp"
}
},
"description": "Composes and sends the monthly finance report email, including transaction details and AI insights.",
"typeVersion": 1
},
{
"id": "f7d8accf-7532-4289-b564-4d2e566ff83b",
"name": "일정 트리거",
"type": "n8n-nodes-base.scheduleTrigger",
"position": [
160,
140
],
"parameters": {
"rule": {
"interval": [
{
"field": "months"
}
]
}
},
"typeVersion": 1.2
},
{
"id": "9931672d-4382-490b-8ed8-68f84aba39c2",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
60,
80
],
"parameters": {
"color": 3,
"width": 1220,
"height": 240,
"content": "## Flow\n"
},
"typeVersion": 1
},
{
"id": "31db7ae7-de61-4b2e-b38b-89d33bf0ee5c",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
1300,
80
],
"parameters": {
"color": 4,
"width": 680,
"height": 1680,
"content": "# Workflow Documentation: Finance Monthly Report with AI Insight\n\n## Problem\n\nMany businesses struggle with manual, time-consuming financial reporting processes. This often leads to:\n* Delayed access to critical financial insights.\n* Lack of proactive decision-making due to retrospective data analysis.\n* Inaccurate or inconsistent reports due to human error in data compilation.\n* Underutilization of financial data for strategic planning.\n\n## Solution\n\nThis n8n workflow automates the monthly financial reporting process by:\n1. **Extracting Data:** Automatically pulls transaction data from Google Sheets.\n2. **Filtering & Processing:** Filters the data to focus on the previous month's transactions.\n3. **AI-Powered Insights:** Utilizes OpenAI (GPT-4) to analyze filtered data and generate a summary of income, expenses, along with key financial insights.\n4. **Automated Delivery:** Compiles the raw data (previous month's transactions) and the AI-generated insights into a well-formatted email and sends it to the designated recipients.\n\nThis ensures timely, accurate, and insightful financial reporting with minimal manual effort.\n\n## For Who\n\nThis workflow is ideal for:\n* **Small to Medium-sized Businesses (SMBs):** Who need regular financial oversight but lack dedicated finance teams or extensive ERP systems.\n* **Startup Founders:** Needing quick and reliable financial summaries to monitor burn rate and performance.\n* **Finance Managers/Accountants:** Looking to automate routine reporting tasks to focus on more strategic analysis.\n* **E-commerce Businesses:** To quickly understand monthly revenue and expenditure trends.\n\n## Scope\n\n* **Input Data Source:** Google Sheets (specifically configured for finance transaction data with 'Date', 'Category', 'Description', 'Amount', 'Type' columns).\n* **AI Model:** OpenAI's GPT-4 (requires an OpenAI API Key).\n* **Output Medium:** Email (via Gmail integration).\n* **Frequency:** Designed to run monthly (configurable via Cron trigger).\n* **Output Content:** Previous month's transaction table, total income, total expense, and 3 AI-generated financial insights.\n\n## How to Set Up\n\n1. **Import Workflow:** Import this JSON into your n8n instance.\n2. **Configure Google Sheets Node:**\n * Connect your Google Sheets account credential.\n * Update `sheetId` to your specific Google Sheet ID.\n * Ensure your sheet contains relevant columns (e.g., Date, Category, Description, Amount, Type) in the 'FinanceSummary' tab or adjust the `range` if your sheet name/range differs.\n3. **Configure OpenAI Node:**\n * Connect your OpenAI API Key credential.\n * (Optional) Adjust the prompt for different insights or output formats.\n4. **Configure Gmail Node:**\n * Connect your Gmail account credential.\n * Update `fromEmail` and `toEmail` with your desired sender and recipient addresses.\n5. **Add Cron Trigger Node:**\n * Add a `Cron` node as the first step.\n * Configure it to run on the desired schedule (e.g., 'every month', 'on the 1st day of the month').\n6. **Activate Workflow:** Save and activate the workflow.\n\n**Important Notes:**\n* Ensure your Google Sheet data format is consistent for accurate filtering and AI analysis.\n* Monitor your OpenAI token usage to manage costs.\n* Consider adding error handling (e.g., sending an alert email if the workflow fails)."
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "fbd3aed3-1704-40c9-a85c-55cfec0e33bc",
"connections": {
"f7d8accf-7532-4289-b564-4d2e566ff83b": {
"main": [
[
{
"node": "c9b7416f-8164-4869-8c8a-3ae49f868334",
"type": "main",
"index": 0
}
]
]
},
"869519eb-0879-4f0d-8a21-4035b69df097": {
"main": [
[
{
"node": "d8d4588b-9761-4bef-a427-ff3282c1b12e",
"type": "main",
"index": 0
}
]
]
},
"6b2dbe34-e3f0-4ca3-b5ca-3a6c3e027ad2": {
"main": [
[
{
"node": "869519eb-0879-4f0d-8a21-4035b69df097",
"type": "main",
"index": 0
}
]
]
},
"c9b7416f-8164-4869-8c8a-3ae49f868334": {
"main": [
[
{
"node": "6b2dbe34-e3f0-4ca3-b5ca-3a6c3e027ad2",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 문서 추출, AI 요약
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
이커머스 생일 할인 자동화
Google 시트와 Gmail을 사용한 이커머스 생일 할인 이메일 자동화
If
Gmail
Function
+
If
Gmail
Function
7 노드Marth
소셜 미디어
이커머스 운영 허브 AI 시스템
Slack, Sheets 및 Gmail을 사용한 이커머스 주문, 재고 및 피드백 자동화
If
Gmail
Slack
+
If
Gmail
Slack
16 노드Marth
고객관계관리
자동화된 청구서 알림
Google Sheets와 Gmail을 사용한 자동 인voice 결제 알림
If
Gmail
Function
+
If
Gmail
Function
7 노드Marth
청구서 처리
基于GPT-4의스마트招聘与候选人互动系统
基于GPT-4의AI招聘系统,用于简历筛选与자동外联
If
Code
Wait
+
If
Code
Wait
30 노드Marth
인사
Hunter.io 및 Google Sheets를 사용한 수동적 후보자 탐색 및 교류 시스템 자동화
Hunter.io, AI 점수 및 Gmail을 통한 패시브 후보자 발굴 및 참여 자동화
If
Code
Wait
+
If
Code
Wait
21 노드Marth
인사
Gemini AI와 Google 스프레드시트를 사용한 레스토랑 매출 및 재고 예측 시스템
Gemini AI 및 Google 스프레드시트를 사용한 레스토랑 판매 및 재고 예측 자동화
Code
Gmail
Google Sheets
+
Code
Gmail
Google Sheets
17 노드Oneclick AI Squad
문서 추출
워크플로우 정보
난이도
중급
노드 수7
카테고리2
노드 유형6
저자
Marth
@marthSimplifying Business with Smart Automation. I create and share user-friendly, highly efficient n8n workflow templates for SMEs, focusing on digital marketing, sales, and operational excellence. Get ready to automate, innovate, and elevate your business. Connect me on Linkedin for custom solutions.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유