Using AI in Excel
From Copilot chat to add-ins — getting real work done, and knowing when to =VERIFY() the machine's work.
What we'll cover
Two different things people call "AI in Excel"
Copilot
Microsoft's own assistant, baked into the Microsoft 365 environment. It's part of the house.
Add-ins
Third-party tools you install into Excel — Claude, ChatGPT and others. External software, invited in.
They work differently — and it matters.
You don't need a paid licence
to get formula help
The free Copilot chat — in the browser or the Windows app — acts as a translator from plain English into Excel syntax.
You write the formula. It tells you how.
Ask in English, get the syntax
=TEXTJOIN(" ", TRUE, A2, B2)
It gives you the tool and the reasoning — not just something to paste.
A patient tutor for broken formulas
Exact vs approximate match — the fourth argument most people never set.
Counting to the wrong column in the lookup range.
The lookup value has to live in the first column of the range.
Learn the why, not just the fix.
AI is great at fake data
| Region | Rep | Units | Revenue |
|---|---|---|---|
| North | Amara | 142 | $8,520 |
| South | Ben | 98 | $5,880 |
| East | Chloe | 211 | $12,660 |
| West | Dev | 167 | $10,020 |
Realistic-but-fake sales, staff, dates and categories — ideal for training.
No privacy risk, and you control the shape of the data.
LLMs read text, not grids
| A | B |
|---|---|
| Jan | 120 |
| Feb | 95 |
| Mar | 143 |
Rows, columns and cell relationships get flattened into a sequence — and can be misread. The very structure that makes it a spreadsheet is what the model handles worst.
Why it hallucinates in Excel tasks
It generates plausible text — so it can invent numbers that "look right."
Rows miscounted, columns misaligned, totals fabricated.
Even when wrong. Tone is not a reliability signal.
So — always verify
What is an add-in?
A third-party tool you install into Excel itself, from Insert › Get Add-ins (or Home › Add-ins on newer builds). It appears as a sidebar panel inside your workbook.
Baked in. Microsoft's own assistant, part of 365, uses your Microsoft account.
Bolted on. External software you install, signed into its own account.
The main add-ins available now
Both major AI companies now ship official Excel add-ins.
How the Claude / ChatGPT add-ins work
Copilot vs add-ins
| COPILOT | ADD-INS | |
|---|---|---|
| Who makes it | Microsoft | Anthropic / OpenAI |
| How you access it | Built into Microsoft 365 | Installed sidebar panel |
| Model | Microsoft's Copilot models | Claude / GPT-5.5 — same model across apps |
| Home advantage | Office Scripts, Power Query, Pivot depth | One consistent model in Excel, Word & PowerPoint |
The honest trade-off — and neither escapes the "check the work" rule.
AI can build your PowerPoint deck too
The Excel-to-PowerPoint workflow
Key takeaways
Free Copilot chat is a brilliant syntax tutor — use it to learn the why
AI is great at generating practice data
LLMs are weak with grid-structured data — and hallucinate confidently
Add-ins differ from Copilot: third-party, installed, their own model
AI can build decks from your data — but the draft needs checking
Verify everything before it counts
Practice / next steps
=TRUST(BUT_VERIFY)