TL;DR
Paste aggregated data (or a sample) into ChatGPT, Claude, or Gemini, then ask one question tied to one decision. The biggest mistake is “analyze this” with no question — you get a polished data tour nobody can act on. Demand a one-line answer, three numbered supporting points, one real caveat, and the next analysis to run. Always sanity-check the headline number yourself: AI reads spreadsheet cells as static text and does not recalculate formulas.
The task
You have a chunk of operational data — Zendesk tickets, Mixpanel events, sales-call logs, a CSV export — and a hunch something is moving. You need an answer that is actionable: not “engagement increased,” but “Android engagement rose 12% in sessions 2 and 3, most of it after the new onboarding shipped on May 6.” The trap is asking “analyze this” with no question. AI then writes a beautiful summary that restates your own data back to you, and no one can use it.
Which AI tool for which data (June 2026)
The three mainstream assistants all analyze tabular and text data, but they differ in how they run the numbers and where the data lives.
| Tool | How it analyzes | Practical file limit | Best for | Price |
|---|---|---|---|---|
| ChatGPT (Advanced Data Analysis) | Writes and runs Python in a stateful sandbox | ~50MB per CSV/Excel; 512MB hard cap; text files capped at 2M tokens | Reproducible math, charts, format conversion | Plus $20/mo (Free is limited to 3 uploads/day) |
| Claude (Claude for Excel) | Reads and edits your live spreadsheet in place, preserving formulas | Works on the open workbook; large sweeps burn through Pro limits fast | In-spreadsheet edits, pivot tables, financial models | Pro $20/mo (heavy users need Max $100/mo) |
| Gemini in Google Sheets | Generates formulas, pivots, and insights inside Sheets | Tied to Sheets’ own row limits | Teams already on Google Workspace | Included in paid Workspace plans |
Notes that matter as of June 2026:
- ChatGPT’s Python sandbox cannot make external web requests or API calls — upload the data or connect a source; it will not fetch a live URL during analysis. The environment is a stateful Jupyter notebook, so follow-up questions reuse the same loaded dataframe.
- Claude for Excel left research preview and went generally available in May 2026; it is included on Pro ($20/mo) and above and runs Claude Opus 4.7. It edits cells while keeping formulas and dependencies intact, but a single broad analysis can exhaust a Pro plan’s usage limit in minutes — budget a Max plan if you do this daily.
- Gemini in Sheets hit a 70.48% success rate on SpreadsheetBench (the standard benchmark for AI spreadsheet work), and is bundled into paid Workspace plans at no extra cost.
If you are choosing, our ChatGPT data analysis workflow guide covers the Python path end to end, and Excel analysis prompts covers the spreadsheet path.
When AI helps — and when it does not
AI is strong at pattern-finding across structured or semi-structured data and at writing the “so what,” once you hand it a question and a decision. It is poor at picking the question for you. The two-line rule: state what you want to learn, and the decision the answer informs. Skip either and you get a polished restatement of the input.
One hard limit to internalize: ChatGPT, Claude, and Gemini all read spreadsheet cells as static text. If a cell holds =SUM(A1:A10), the model usually sees the displayed value, not the live formula, and it does not recalculate when inputs change. Treat AI as the analyst who explains the numbers, never the engine that computes the canonical ones.
What to feed the AI
- Aggregated data or a representative sample (CSV, table, or ticket text)
- The specific business question you are answering
- The decision the analysis informs
- Time window and how you want it segmented
- Known data caveats — sampling, instrumentation gaps, recent changes
- What “good” looks like in this metric
Copy-ready prompt
Analyze operational data.
Question (what I want to learn): [one line]
Decision (what I will do with the answer): [one line]
Time window: [one line]
Segmentation: [list]
Known data caveats: [list]
What "good" looks like: [one line]
Data (sample or aggregated):
"""
[paste]
"""
Return:
1. One-line answer to my question, in plain language
2. Three supporting data points — each with a number and the segment it came from
3. One caveat about the data — sampling, recency, or instrumentation
4. The single next analysis I should run before acting
5. A confidence check: at what confidence level should I act on this?
6. The action: do it if confident, hold if uncertain
Do not produce a summary. I want an answer, supported by data.
For a write-up afterward: “Now produce a 200-word executive memo from this analysis — the message, the action, the next step.” For verification math: “Write Python to recompute the headline metric from the raw rows and show your work.”
What good output looks like
A one-line headline answer, three supporting points with numbers and segments, one real caveat, the next analysis to run, and a binary action decision. Drop the executive summary — readers want the answer, not a tour through the data.
How to check the output is usable
- The headline answer addresses your question, not an adjacent one
- Supporting points carry numbers and segments, not vague claims
- The caveat is real (sampling, instrumentation, a recent ship), not boilerplate
- The next analysis is specific: a query you can run, not “look into it”
- The action is binary: do, do not, or defer until you have data X
- You re-derived the headline number yourself — by hand, in SQL, or by asking AI to recompute it in Python
Common mistakes
- Asking “analyze this” with no question. You get a tour, not an answer.
- Skipping data caveats. A colleague will quote the number without them.
- Not stating the decision. AI weighs the analysis differently when the stakes are explicit.
- Trusting AI on the math. Re-derive the headline metric; the model is reading cells as text, not recalculating.
- Acting before the next analysis. Your real confidence was lower than it felt.
FAQ
- Can AI compute the numbers, or just explain them? ChatGPT’s Advanced Data Analysis genuinely runs Python on your file and can recompute metrics from raw rows. Chat-only answers (and spreadsheet add-ins reading displayed values) explain numbers but should not be trusted as the source of truth. Re-derive anything load-bearing.
- What about confidence intervals and sample size? Ask the model to estimate sample size and noise, then do a back-of-envelope sanity check yourself. Treat its statistics as a draft, not a verdict.
- Can AI write SQL? Often yes, and it is useful for verification and exploration. Read the query before you run it against production, and keep the canonical dashboard query stable rather than AI-generated.
- Should I connect AI directly to my BI tool or warehouse? Read-only exploration is fine and increasingly common. Production analytics still need versioned, reviewed queries, not a prompt that changes wording each run.
- How big a file can I upload? As of June 2026, ChatGPT caps CSV/Excel uploads at roughly 50MB each (512MB hard limit, text files at 2M tokens), with 80 uploads per 3 hours on paid plans. For larger datasets, pre-aggregate or sample before uploading.
Related
- Excel analysis prompts — analysis on spreadsheet data
- Survey analysis — when the data is survey responses
- Funnel analysis readout AI — funnel-specific
- Retention cohort readout AI — cohort-specific
- Experiment interpretation — when data is an A/B test
- Chart table explanation AI — communicate the analysis
- ChatGPT data analysis workflow — the broader Python workflow
Tags: #AI writing #Data analysis #Finance #Business analysis