Have You Ever Seen This Scenario?
A small restaurant owner spends two hours every night manually exporting orders from Meituan and Ele.me, copying them into Excel, and calculating daily revenue. And they still make mistakes.
An e-commerce seller spends half a day every month downloading sales data from multiple platforms, using VLOOKUP and pivot tables to stitch together a report for their weekly team meeting.
You see the pattern? This isn’t an exception—it’s the daily reality for millions of small business owners. They don’t know how to code, they don’t want to learn complex BI tools, but they need data. They need to know which products sell best, which time slots have the most foot traffic, which customers need re-engagement campaigns.
When you master AI + Excel report automation, you’ve essentially acquired a money-printing skill.
Why Is “AI + Excel Report Automation” a Great Business?
1. Massive and Sustained Market Demand
According to China’s National Bureau of Statistics, there are over 180 million market entities in China, with micro and small businesses accounting for more than 95%. These businesses share common pain points:
- Fragmented data: Orders live in Meituan, Douyin, WeChat Mini Programs—each in a different system
- Inefficient manual processing: Spending days each month on reports, prone to errors
- Lack of data insights: They have data but don’t know how to analyze it or use it to guide operations
They don’t need “big data”—they need “a weekly report they can understand.” That’s your opportunity.
2. Low Learning Curve, Amplified by AI
You don’t need to know Python programming. You don’t need to understand complex SQL. You just need to master these core tools:
- AI Large Language Models (ChatGPT, Claude, Tongyi Qianwen): Help you write formulas, generate Excel templates, interpret data
- DuckDB: A database engine that can run directly on Excel files, handling millions of rows effortlessly
- Excel / Google Sheets: The tools business owners already know and trust
3. Clear Pricing, High Margins
| Service Type | Price Range | Time Required |
|---|---|---|
| Single report template | ¥300 - ¥800 ($40-$110) | 2-4 hours |
| Monthly automated workflow | ¥500 - ¥2,000/month ($70-$280) | First setup 4-8 hrs, then 1 hr/month maintenance |
| Dashboard + analysis consulting | ¥1,000 - ¥5,000 ($140-$700) | 1-3 days |
Even at the lowest pricing, handling 3-5 clients per month easily generates ¥3,000-¥10,000/month. And once templates are built, repeat business is extremely common—client retention rates often exceed 80%.
4 Core Skills You Need
Skill 1: Use AI to Write Advanced Excel Formulas
A client gives you a requirement: “Help me calculate monthly sales by product category and month-over-month growth from my raw order data.”
Previously, you’d need to hand-write complex INDEX/MATCH or SUMIFS formulas. Now, just tell AI:
“I have an Excel spreadsheet with columns: Date (A), Category (B), Revenue (C). Help me write formulas to calculate total monthly sales by category and the growth rate compared to the previous month.”
AI gives you a complete formula solution in seconds, even telling you step by step how to implement it.
Pro tip: With DuckDB’s Excel connector (excel extension), you can query Excel files directly with SQL—10x faster than writing formulas.
Skill 2: Use DuckDB for Big Excel Data
Excel has a fatal weakness: it chokes past 100,000 rows. But DuckDB handles millions effortlessly:
-- Analyze an Excel file directly with DuckDB
SELECT
strftime(order_date, '%Y-%m') as month,
category,
SUM(revenue) as total_revenue,
SUM(quantity) as total_quantity,
AVG(unit_price) as avg_price
FROM read_auto('sales_data.xlsx')
WHERE order_date >= '2026-01-01'
GROUP BY month, category
ORDER BY month, total_revenue DESC;
This is dimensional dominance—you’re doing in SQL what others are still doing row-by-row with VLOOKUP.
Skill 3: Build Automated Data Pipelines
Where does client data come from? Common scenarios:
- E-commerce platform exports: Downloads from Meituan, Taobao, Douyin backend as CSV
- POS system exports: Point-of-sale system Excel exports
- Manual uploads: Clients export data themselves from various platforms
Your job:
- Design an Excel template (input area + analysis area)
- Use AI to generate data cleaning scripts (Python / DuckDB)
- Client uploads raw data → one-click report generation
Advanced move: Use Zapier or Make to build automated workflows—when data updates, reports auto-generate and email to the client. One template can serve 10 clients with near-zero marginal cost.
Skill 4: Use AI for Data Interpretation and Visualization
The report is ready, but the boss doesn’t understand it?
Let AI write a “plain language” interpretation:
“Based on the following sales data, generate a 200-word monthly business analysis including: total revenue trends, category performance, anomaly alerts, and next-month recommendations.”
AI generates professional analysis copy—you just tweak the tone to make the client feel “this person really gets me.”
For visualization, Excel’s built-in charting is sufficient. You can also use AI to generate color scheme suggestions and layout optimization tips.
Client Acquisition: Where to Find Clients?
Channel 1: Local Business Districts (Most Recommended)
Walk into commercial streets, wholesale markets, restaurant districts in your city and talk to business owners.
Pitch script:
“Boss, I notice you spend quite a bit of time in Excel tracking daily revenue every day? I use AI tools to build automated reports for businesses like yours—one click and you see the full picture, for just a few hundred yuan a month.”
Success rate: 1-2 out of 10 conversations. But once closed, stickiness is extreme—you save them 1-2 hours daily.
Channel 2: Xianyu / Taobao
Search keywords: “Excel help,” “data organization,” “report automation.”
You’ll find this niche has very little competition—most sellers only know basic Excel. Emphasize “AI-powered,” “automated,” “build once, benefit forever” to stand out.
Pricing strategy: Start at ¥299, gradually increase to ¥599-¥1,999 after building reviews.
Channel 3: Xiaohongshu (Little Red Book) / Douyin
Share before-and-after case studies:
“After building an automated report for a bubble tea shop, they discovered Wednesday afternoons had the lowest traffic—so they launched a limited-time discount, boosting same-day revenue by 40%.”
“Using AI to analyze 3 years of sales data revealed one product had the highest margin but lowest volume. After adjusting strategy, monthly profit increased by ¥20,000.”
Real cases are the best advertising.
Channel 4: WeChat Moments / Referrals
Look in your existing social circle: your cousin who does e-commerce, a friend who runs a restaurant, a classmate who sells on WeChat. Your first client often comes from someone you already know.
Full Case Study: Monthly Sales Analysis for a Clothing Store
Background
Client: Small women’s clothing store, 3 locations Need: Monthly consolidated sales report across all stores Current state: Staff manually export data from three POS systems, consolidate in Excel, taking 2 days per month
Solution
- Data collection: Staff exports CSV files from each store’s POS monthly
- Data consolidation: DuckDB merges three files, cleans duplicates
- Analysis modeling:
- Sales breakdown by category, size, price tier
- Same Store Sales Growth calculation
- Inventory turnover rate analysis
- Visualization: Dynamic Excel dashboard with month filtering
- AI interpretation: Auto-generated monthly business analysis text
Results
- Time reduced from 2 days to 30 minutes
- Pricing: ¥800 template setup + ¥500/month maintenance
- Client satisfaction: ⭐⭐⭐⭐⭐
- Client referred 2 fellow business owners
Tool Recommendation List
| Tool | Purpose | Price |
|---|---|---|
| DuckDB | Fast data analysis engine | Free & open source |
| ChatGPT / Claude | AI formula generation, data interpretation | Free / Subscription |
| Excel / Google Sheets | Report presentation | Free / Subscription |
| CSVKit | CSV file processing | Free & open source |
| Make (formerly Integromat) | Workflow automation | Free tier available |
| Canva | Data visualization design | Free tier available |
Frequently Asked Questions
Q: I don’t know how to code. Can I still do this? A: Absolutely. Your core tools are AI and Excel—no coding required. DuckDB SQL queries are generated by AI; you just copy and paste.
Q: What if the client doesn’t know how to use Excel? A: You deliver a “one-click generate” template. The client only needs to place data files in a designated folder and click “Generate Report.” All complex logic is hidden behind the scenes.
Q: Won’t competition increase over time? A: Currently, competition is minimal. Most Excel service providers only know basic operations, while those combining AI + automation are rare. Plus, once client relationships are established, switching costs are high.
Q: Can this scale? A: Definitely. With 20+ clients, you can develop 5-10 universal templates (restaurant version, retail version, e-commerce version, service version), with near-zero marginal cost. You can further hire interns for data cleaning while you focus on sales and client relationships.
Action Plan: Start Today
- Day 1: Install DuckDB, complete 3 exercises from the official tutorial
- Day 3: Use AI to build an Excel data cleaning template, test with your own data
- Day 7: Find 3 friends who run small businesses, offer free monthly reports
- Day 14: Refine templates based on feedback, take first paying client (starting at ¥299)
- Day 30: Document your case study, publish on Xiaohongshu/WeChat for content-driven leads
- Day 90: 5+ paying clients, ¥3,000+/month becomes the norm
Final Thoughts
The core advantage of the AI data analysis side hustle is simple: you save people time, and they’ll happily pay for it.
No expensive equipment needed. No professional degree required. Just a computer and an AI account. The market is massive, demand is essential, and competition is thin—this is the best window for ordinary people to achieve side income through AI.
Don’t wait until everyone else has made money before you act. Start today. Your first AI data report could be the beginning of a ¥10,000+/month side hustle.
For the DuckDB technical content mentioned in this article, visit DuckDBLab.com to explore more AI + data analysis possibilities.