In Module 3.1 you saw how developers use GenAI for code generation and debugging. This module is for the other half of every Indian IT team — the analysts, business analysts, and data analysts who work with data, reports, dashboards, and stakeholder communication every day.
If you are in a data analyst, business analyst, or reporting role — or planning to enter one — this module shows you exactly where AI saves the most time and produces the highest quality output.
The analyst role is shifting fast. Natural language querying, automated insight generation, analytics code generation, and RAG-based internal data search are the highest-ROI GenAI use cases in data analytics in 2025. The analysts who learn to use these tools effectively are completing in 30 minutes what used to take a full day.
For analysts who are not SQL experts — or who write SQL but spend time on complex joins and window functions — AI dramatically accelerates query writing. Give the model your table schema and what you want to know, and it generates correct SQL in seconds.
I have these tables:
Write a query that shows:
Use window functions for the month-over-month calculation. Format the revenue columns as integers (no decimals).
SELECT c.tier, COUNT(DISTINCT o.customer_id) AS active_customers, SUM(o.total_amount) AS total_revenue, AVG(o.total_amount) AS avg_order_value, SUM(o.total_amount) / COUNT(DISTINCT o.customer_id) AS revenue_per_customer, RANK() OVER (ORDER BY SUM(o.total_amount) DESC) AS revenue_rank FROM orders o JOIN customers c ON o.customer_id = c.customer_id WHERE o.order_date >= DATE_SUB(CURDATE(), INTERVAL 90 DAY) AND o.status = ‘delivered’ GROUP BY c.tier HAVING COUNT(DISTINCT o.customer_id) > 10 ORDER BY total_revenue DESC;
This is where most analysts underuse AI. They use it to format tables but not to interpret them. AI is excellent at identifying patterns, anomalies, and business implications in data — if you give it the right context about what the data represents and who will read the summary.
Here is the sales data for March 2026:
Region | Revenue (₹ Cr) | vs Feb | vs Mar 2025 | Units Sold | Returns % North | 142.3 | +8.2% | +23.1% | 48,200 | 2.1% South | 118.7 | -3.4% | +11.4% | 39,800 | 1.8% West | 167.9 | +12.1%| +31.2% | 54,100 | 3.7% East | 89.2 | -7.8% | +4.2% | 31,900 | 4.2% Total | 518.1 | +3.6% | +18.9% | 174,000 | 2.8%
Write a 3-paragraph executive summary. Paragraph 1: overall performance vs targets. Paragraph 2: key highlights and concerns by region. Paragraph 3: 2 specific recommendations.
Tone: direct and factual. No fluff. The reader has 2 minutes for this.
Here is transaction volume data by day for the past 4 weeks (in thousands):
Week 1: Mon 42, Tue 45, Wed 43, Thu 47, Fri 89, Sat 134, Sun 98 Week 2: Mon 41, Tue 44, Wed 46, Thu 45, Fri 91, Sat 128, Sun 95 Week 3: Mon 43, Tue 46, Wed 44, Thu 48, Fri 87, Sat 131, Sun 97 Week 4: Mon 40, Tue 12, Wed 45, Thu 46, Fri 88, Sat 133, Sun 96
Identify any anomalies. For each anomaly:
Think step by step before identifying anomalies.
For analysts who know what they want to do with data but are not strong Python coders, AI generates working pandas and matplotlib/seaborn code with the same specificity-equals-quality principle from Module 3.1. For experienced analysts, AI accelerates the boilerplate — freeing you to focus on interpretation.
I have a CSV file ‘customers.csv’ with these columns: customer_id, circle (Delhi/Mumbai/Chennai/Kolkata/etc), tenure_months, monthly_recharge_avg, data_usage_gb, voice_minutes, complaints_last_90d, last_recharge_days_ago, churned (0/1)
Write Python code that:
Requirements:
Input: ‘weekly_sales.xlsx’ with sheets: RawData, Targets
Output: A formatted Excel report ‘weekly_report.xlsx’ with:
Formatting requirements:
Use openpyxl. Include error handling for missing files.
The highest-value analyst output is not the data itself — it is the narrative that explains what the data means. This is where AI saves the most time and where prompt engineering skill produces the biggest quality difference.
Dashboard context: Q4 FY2026 (Jan–Mar 2026) performance review Audience: Senior leadership team (CMO, CFO, COO) — non-technical
Key metrics from the data:
Write:
Keep language sharp. Each sentence should contain a number. Avoid passive voice.
Findings:
For each slide provide:
Slides: Executive Summary, Problem Analysis, Root Causes, Solution (AI-assisted testing), Next Steps
Three tasks covering the core analyst use cases. Each should take 15–20 minutes.
After this assignment you will have a concrete sense of where AI genuinely accelerates analyst work and where your own business judgement is irreplaceable.
| Claim | Source |
|---|---|
| 50%+ of standard financial reports will be AI-generated within two years | Deloitte 2026 State of AI in the Enterprise, cited in sranalytics.io March 2026 |
| 40–60% productivity boost for analysts using GenAI for information retrieval | BCG Stairway to GenAI Impact, cited in sranalytics.io January 2026 |
| Natural language querying, automated insight generation, analytics code generation are highest-ROI use cases | LatentView Analytics GenAI in Data Analytics, April 2026 |
| 18% annual growth in data analytics roles in India 2026; ₹4–8 LPA entry salaries | learninglabb.com Data Job Trends 2026, December 2025 |
| Data analyst role in India: SQL, Tableau/Power BI, Excel, Python — standard toolkit | dvanalyticsmds.com Data Science Career Paths India 2026 |
| Diagrams: original — CC0 | No attribution required |