There is a specific trap with AI and numbers, and once you see it you will never fall into it again.
Do not ask the model to do arithmetic. Ask it to write the thing that does the arithmetic.
Paste 300 rows of sales into a chat and ask for the total, and something is generating a plausible-looking number. Ask instead for the formula, run the formula yourself, and now a spreadsheet did the maths — a machine that has never once got a sum wrong. Same effort. Completely different reliability.
The formula you could not write
This is the highest-value use of AI for anyone who lives in spreadsheets but is not a spreadsheet expert. Describe the problem in your own words, including your actual column layout:
In Google Sheets. Column A is invoice date, column B is client name, column D is amount in rupees, column F says PAID or UNPAID. I want a formula in H2 that totals unpaid invoices for the client named in G2 that are more than 30 days old.
You get =SUMIFS(D:D, B:B, G2, F:F, "UNPAID", A:A, "<"&TODAY()-30) and an explanation of each part. You did not need to know SUMIFS existed. You do need to test it — which is the next section.
The same move works for pivot tables ("how do I set this up to show monthly totals by branch"), for cleaning ("a formula to strip the leading apostrophe and trailing spaces from these phone numbers"), and for the classic "why does this return #VALUE!" — paste the formula and the error, and you will usually get the answer faster than searching.
Testing a formula in one minute
Never trust a formula because it returned a number. Numbers always look right.
- Run it on a handful of rows you can check by hand. Ten rows, calculator, compare.
- Try the awkward cases. A blank cell. A zero. A date exactly 30 days old. A client name with a trailing space. These are where formulas break.
- Sanity-check the scale. If unpaid invoices come to ₹4,200 and you know it is roughly two lakh, stop.
That is a minute of work and it catches nearly everything.
Describing data, and the honest limit
Modern assistants can also take a spreadsheet file and analyse it — often by writing and running actual code behind the scenes, which is genuinely reliable arithmetic. Where they help:
- First look. "What is in this file? Any obviously broken columns, duplicates, impossible dates?"
- Asking the question you cannot phrase. "Is there a pattern in which customers stop ordering?" It will suggest angles, several of which will be worth checking.
- Charts. "Plot monthly revenue by region" is far faster than clicking through chart menus.
Where it will mislead you: it does not know your business. It cannot know that April's spike was a one-off government order, that Branch 7 changed its recording method in June, or that "customer" means something different in two of your systems. It will find a pattern and explain it confidently. The explanation is a hypothesis dressed as a finding.
And a hard line: it cannot tell you whether a difference is real or noise unless you ask properly, and "sales are up 12% since the new packaging" is not evidence that packaging caused it. If a decision worth real money rests on it, get someone who does statistics to look.
Where the accountability sits
If you paste a formula into the sheet that goes to the board, that formula is yours. "The AI wrote it" is not a sentence anyone will accept, and you would not accept it from a junior colleague either.
Before you move on