Chapter 1. Why Claude for Excel (And Not the Other Guys)
Overview
- Purpose: What the Claude for Excel add-in actually does, how it compares to Copilot and ChatGPT, and why it matters for managers who use Excel every day. Setting up Claude Pro, installing the add-in, and understanding what Claude can and cannot do with your spreadsheets. The $20/month ROI calculation.
- You will learn: What the Claude for Excel add-in does and how it reads your workbook, how Claude compares to Microsoft Copilot and ChatGPT for real Excel tasks, how to set up Claude Pro and install the add-in in under ten minutes, what Claude can and cannot do with your spreadsheets, and why $20/month pays for itself before lunch on day one.
- Tools needed: A computer with Excel (desktop, version 2016 or later), a web browser, a credit card for Claude Pro ($20/month)
- Time to implement: 15 minutes to read, 10 minutes to set up
The Story: “The Formula That Took an Hour”
Dana Kowalski needed one formula. Just one.
It was the second Tuesday in January, and she was sitting at her desk on the third floor of Greenfield Manufacturing’s headquarters in Milwaukee, staring at Tab 14 of the annual budget workbook. The workbook had twenty-two tabs. She had built most of them herself over the past four years, and at this point the file was less a spreadsheet and more an organism – something that had grown and adapted and developed dependencies she could not fully remember creating.
The problem was the cost allocation table. Greenfield ran six production lines across two facilities, and each line’s overhead allocation depended on three factors: the department code, the fiscal quarter, and whether the line was running a standard or expedited production schedule. The allocation percentages lived on Tab 3. The department codes lived on Tab 7. The production schedule flags lived on Tab 19. And Dana needed a formula in Tab 14, cell G48, that would look at all three of those inputs and pull the correct allocation percentage.
She knew this was an INDEX/MATCH problem. Probably nested. Probably with an IF or two wrapped around it. She had written formulas like this before – but not exactly like this, and not with this particular combination of three criteria pulling from three different tabs.
She opened Google and typed “INDEX MATCH multiple criteria different sheets.”
The first result was a Stack Overflow thread from 2019. The accepted answer used SUMPRODUCT as a wrapper around INDEX/MATCH, which she vaguely remembered seeing before. She tried adapting it. The formula returned zero. She checked the cell references. They looked right. She tried again. Still zero.
The second result was an Excel forum post that suggested using an array formula with Ctrl+Shift+Enter. She typed it out carefully, pressed the key combination, and got a #VALUE! error. She spent eight minutes checking whether the ranges were the same size. They were. She still got the error.
The third result was a YouTube video. She scrubbed to the three-minute mark where the presenter started building the formula. His example used one sheet, not three. She tried to adapt it anyway. She got a result – but it was wrong. She compared it manually against the allocation table and it was pulling Q3 instead of Q1. Something about the column offset was off by two.
Forty-five minutes had passed. She had nine browser tabs open. Her coffee was cold.
She went back to the SUMPRODUCT approach from the first Stack Overflow thread, made three more adjustments, tested it against five known values, and confirmed it was returning the right numbers. The formula was 147 characters long. It worked. She could not fully explain why.
She copied it down to G72 and moved on with her morning. But the experience gnawed at her. She was a finance manager with eleven years of experience. She knew INDEX/MATCH cold for simple lookups. But every time the formula got complex enough – three criteria, multiple tabs, conditional logic – she ended up in the same cycle: Google, Stack Overflow, trial and error, an hour gone.
Two weeks later, her colleague Raj mentioned something called Claude for Excel. An add-in. He had installed it the previous week.
“Show me,” Dana said.
Raj opened his budget workbook, clicked the Claude icon on his Home ribbon, and typed: “I need a formula in G48 that looks up the allocation percentage from Tab 3 based on the department code in Tab 7 column B and the quarter in Tab 14 column C, but only when Tab 19 shows the schedule type as Standard.”
The response appeared in about two seconds. It gave her an XLOOKUP nested inside an IF, with every cell reference pointing to her actual tab names and column letters. Below the formula, it explained what each piece did. Below that, it offered an alternative using INDEX/MATCH for older Excel versions.
Dana stared at the screen for a long moment.
Then she said a word she does not usually say at work and went to install the add-in.
What the Claude for Excel Add-In Actually Does
The Claude for Excel add-in launched in January 2026. It runs on Claude Opus 4.6 – Anthropic’s most capable model – and it works as a sidebar panel inside your Excel desktop application. You click the Claude icon on the Home ribbon, a panel opens on the right side of your workbook, and you type what you need in plain English.
Here is what makes it different from just copying your data into Claude’s website: the add-in reads your open workbook. It sees your tab names, your cell values, your formulas, your named ranges, and your data types. When it gives you an answer, it cites specific cells – “Cell B14 on the Revenue tab contains a SUMIFS formula referencing…” – so you can verify exactly what it is looking at.
You do not upload anything. You do not export to CSV. You do not copy-paste ranges into a chat window. The workbook is open on your screen, and Claude reads it.
Three things to understand about how this works:
It reads structure, not just values. Claude sees that Tab 3 is called “Allocation Rates” and that it contains a table in B2:F25 with department codes in column B and percentages in columns C through F. It understands the relationships between tabs. This is why it can write cross-tab formulas that actually reference your real sheet names and cell addresses.
It responds with cell citations. When Claude identifies a problem or references a value, it tells you where it found it. If there is an error in your model, Claude does not just say “your revenue number looks wrong” – it says “Cell D14 on the Summary tab references Revenue!B22, which contains a SUMIFS formula that is excluding December because the date range in B1 ends at 11/30.”
It works with local files. Your workbook does not need to be saved on OneDrive or SharePoint. It can sit on your desktop, on a network drive, or on a USB stick you found in a parking lot (please do not do this). Claude reads whatever workbook is currently open in Excel.
The Comparison: Claude vs. Copilot vs. ChatGPT
You have three options for AI-assisted Excel work right now. Here is how they compare across the tasks that actually matter.
| Task | Claude for Excel | Microsoft Copilot | ChatGPT for Excel |
|---|---|---|---|
| Monthly cost | $20 (Claude Pro) | $30 (M365 Copilot) | $20 (ChatGPT Plus, beta add-in) |
| Formula generation | Excellent – multiple alternatives with explanations | Good – native insertion | Good – detailed step-by-step |
| Multi-tab understanding | Best in class – reads full workbook structure | Limited – works best within single sheet | Moderate – needs data uploaded |
| Power Query M code | Excellent – generates complete M code | Not available in Power Query editor | Can suggest M code, not integrated |
| Formula debugging | Excellent – cell citations trace errors across tabs | Basic – catches simple errors | Good – but less precise on cross-tab |
| VBA / Office Scripts | Excellent code generation | Can generate but less reliable | Good generation, can simulate execution |
| Native calculations | No – reads displayed values only | Yes – runs inside Excel | Yes – Code Interpreter does actual math |
| In-cell editing | No – you copy-paste the formula | Yes – writes directly into cells | No – you copy-paste |
| Response speed | 1-2 seconds | Several seconds | Variable (2-10 seconds) |
| Works with local files | Yes | Requires OneDrive/SharePoint | Requires file upload |
| Data integrations | MCP connectors (FactSet, S&P Global, etc.) | Microsoft Graph, Dataverse | Financial data via plugins |
Here is the short version:
Use Claude when you need to write complex formulas, debug errors across multiple tabs, generate Power Query code, or work with large multi-tab workbooks. Claude treats your workbook like a consultant would – it reads the whole thing, understands the structure, and gives you answers with specific cell references.
Use Copilot when you need quick formatting, simple in-cell edits, or tasks that benefit from native Excel integration. Copilot can directly insert formulas, create charts, and apply formatting without you copying and pasting anything. Its Agent Mode can execute multi-step tasks inside Excel.
Use ChatGPT when you need actual calculations performed on your data, Python-based analysis, or tasks that require the Code Interpreter to crunch numbers. ChatGPT will run your data through real computation – something Claude cannot do.
If budget forces you to pick one and you spend most of your time on formula-heavy, multi-tab workbooks, Claude is the pick. If your work is mostly single-sheet formatting and simple analysis, Copilot is more convenient. If you need heavy number-crunching and data science, ChatGPT edges ahead.
Setting Up Claude Pro and Installing the Add-In
This takes about ten minutes. Here are the exact steps.
Step 1: Sign up for Claude Pro ($20/month)
Go to claude.ai and create an account if you do not already have one. Click the upgrade button and select Claude Pro. It costs $20 per month. This gets you access to Claude Opus 4.6 (the best model), the Excel add-in, Claude Code (the command-line tool), and higher usage limits than the free tier.
You will need a credit card. There is no free trial for the Excel add-in – it requires the Pro plan.
Step 2: Install the add-in from the Microsoft Marketplace
Open Excel. Go to the Home tab on the ribbon. Click “Get Add-ins” (or “Add-ins” depending on your Excel version). Search for “Claude by Anthropic for Excel.” Click Add. Accept the permissions prompt.
A Claude icon will appear on your Home ribbon. Click it to open the sidebar panel.
Step 3: Sign in
The first time you open the sidebar, it will ask you to sign in with your Claude account. Use the same email and password you used for Claude Pro. Once authenticated, the sidebar connects to your open workbook.
Step 4: Set up your Instructions field
This is the step most people skip, and it makes a significant difference. At the top of the Claude sidebar, there is an “Instructions” field. This is persistent context that gets sent with every message in every conversation. Think of it as telling a new consultant about your company on their first day.
Here is what Dana put in hers:
I am the Finance Manager at Greenfield Manufacturing, a $120M revenue manufacturer in Milwaukee. My main workbook is the annual operating budget with 22 tabs. Department codes are on the “Dept Codes” tab. Allocation rates are on “Alloc Rates.” Production schedules are on “Prod Schedule.” I use structured table references when possible. All currency values are USD, no decimals unless showing cents. Our fiscal year starts April 1.
You do not need to write a novel. Two to four sentences of context about your workbook, your role, and your formatting preferences will improve every response Claude gives you.
What Claude Can Do
Here is the list. Every one of these capabilities has been tested by real users and confirmed as of March 2026.
Formula generation. Describe what you need in plain English. Claude writes the formula, explains each argument, and often offers two or three alternatives with notes on which one is better for your situation. It handles VLOOKUP, XLOOKUP, INDEX/MATCH, nested IFs, SUMIFS, COUNTIFS, dynamic arrays (FILTER, SORT, UNIQUE), LAMBDA, LET, and structured table references.
Write a formula that counts unique customers in column A of the Sales tab who placed orders over $5,000 in Q1 2026, based on the dates in column C.
Formula debugging. Paste or point Claude to a formula that is returning an error or wrong result. It traces the logic, identifies where it breaks, and tells you exactly which cell on which tab is causing the problem. This is the feature that saves the most time for people who inherit other people’s workbooks.
Power Query M code. Claude generates complete Power Query transformation code. This matters because Microsoft Copilot does not work inside the Power Query editor – you are on your own there. Claude can write M code for data transformations, merges, pivots, unpivots, and custom column logic.
Write Power Query M code to combine all Excel files in the Reports folder, unpivot the monthly columns into rows, and add a calculated column for year-over-year growth.
VBA macros and Office Scripts. Claude generates ready-to-paste VBA code for desktop Excel and Office Scripts (JavaScript) for Excel on the web. It cannot execute the macros – you paste the code into the VBA editor and run it yourself – but the code comes with section-by-section explanations and error handling.
Multi-tab analysis. This is Claude’s strongest advantage. It reads your entire workbook structure and maintains context across tabs. You can ask questions like “What happens to my bottom line if I delay all Q2 hires by one quarter?” and Claude will trace the impact across every tab that references your headcount assumptions.
Workbook auditing. Claude can review a workbook you did not build and explain what it does. It maps formula dependencies, identifies circular references, flags inconsistencies, and summarizes the logic of each tab. This alone is worth the subscription if you have ever inherited a critical workbook from someone who left the company.
Financial model building. Claude has pre-built Skills for common financial models: DCF valuations, comparable company analysis, three-statement models, and sensitivity tables. You can build a complete financial model from scratch by describing what you need, or hand Claude an existing model and ask it to add scenario toggles or sensitivity analysis.
What Claude Cannot Do
This section matters just as much as the previous one. Knowing the boundaries saves you from frustration and from trusting output you should not trust.
Claude cannot perform native calculations. This is the single most important limitation. When Claude reads your workbook, it sees the displayed values in cells – not the live calculated results. If a cell contains the formula =B5*C5 and displays $14,250, Claude sees $14,250. It does not recalculate B5 times C5 to verify that number is correct. If the formula is broken but the cell still shows a cached value, Claude will trust the cached value.
What this means in practice: do not ask Claude to “calculate my total revenue” and trust the number. Ask Claude to write you a formula that calculates total revenue, then run that formula in Excel and trust the result Excel gives you.
Claude cannot edit your workbook directly. Unlike Copilot, Claude does not write into cells. It generates formulas and code in the sidebar panel, and you copy-paste them into your workbook. This is a deliberate design choice (it prevents accidental overwrites), but it means two extra clicks for every formula.
There is a 30MB file size limit. If your workbook is over 30MB through the web or mobile interface, you will need to trim it down or use the API (which supports up to 500MB). Most Excel workbooks are well under 30MB unless they contain embedded images or massive datasets. The add-in reads your open workbook directly, so the file-size limit mostly applies to the chat upload workflow.
Usage limits exist on the Pro plan. Claude Opus 4.6 is resource-intensive. Complex multi-tab analysis burns through your usage allowance faster than simple formula requests. Multiple users have reported hitting their Pro plan limits during extended modeling sessions. Tips: use Claude Sonnet (the faster, lighter model) for routine questions and save Opus for the complex stuff. If you consistently run out, Claude Max and Enterprise plans offer higher ceilings.
Claude cannot execute VBA macros. It writes them. You run them. Claude generates the code, explains it, and helps you debug it if something goes wrong. But it cannot press the Run button for you.
The add-in is still in beta. As of March 2026, Claude for Excel works well for most tasks but is not production-hardened for every edge case. Extremely complex models (100+ tabs, deeply nested circular references) can trip it up. The interface is being updated regularly. Expect improvements, but also expect the occasional rough edge.
The ROI Math: $20/Month vs. the Hours You Save
Let us do the calculation Dana did when she justified the expense to her VP of Finance.
Dana estimated she spent about six hours per month on tasks that Claude could handle faster:
| Task | Time Without Claude | Time With Claude | Monthly Savings |
|---|---|---|---|
| Writing complex formulas (2-3 per week) | 30 min each = 4-6 hrs/month | 2 min each = 30 min/month | 3.5-5.5 hours |
| Debugging inherited formulas | 2 hours/month | 15 min/month | 1.75 hours |
| Power Query transformations | 1.5 hours/month | 20 min/month | 1.2 hours |
| Variance report formatting | 1 hour/month | 15 min/month | 0.75 hours |
| Total | ~9 hours/month | ~1.3 hours/month | ~7.5 hours/month |
Dana’s fully loaded cost to Greenfield is roughly $65/hour (salary plus benefits plus overhead). That means 7.5 hours saved per month represents approximately $490 in recovered productivity.
Claude Pro costs $20/month.
That is a 24:1 return. The subscription pays for itself by 10 AM on the first day you use it.
Even if you are more conservative – say Claude saves you just two hours per month – that is still $130 in productivity against a $20 cost. A 6.5:1 return. Most software tools your company buys cannot claim anything close.
And this ignores the compounding effect. As you get better at prompting Claude over weeks two through four, you get faster. You start using it for tasks you would not have attempted before – building models, writing VBA, cleaning datasets. The ROI grows because your usage grows.
The honest risk: you might hit usage limits during heavy modeling sessions on the Pro plan. If that becomes a pattern, the Max plan at higher pricing removes that ceiling. For most managers doing daily Excel work, Pro is more than sufficient.
Try This Now (5 Minutes)
Do not just read this chapter. Set up Claude right now if you have not already, or try this exercise if you have.
Step 1: Open any Excel workbook you are currently working on. Pick one with at least two tabs.
Step 2: Open the Claude sidebar (or go to claude.ai if you have not installed the add-in yet and upload your file).
Step 3: Type this prompt, replacing the specifics with your own:
Look at this workbook and give me a summary: how many tabs are there, what data is on each tab, and are there any formulas that reference other tabs? List the cross-tab references you find.
Step 4: Read Claude’s response. Check two or three of its claims against your actual workbook. Is it accurate about the tab names? The cross-references? The data types?
That is it. You just had your first real interaction with Claude for Excel. If it got your workbook structure right – and it almost certainly did – you now understand what it means to have an AI that reads your spreadsheet instead of guessing about it.
Key Takeaways
Claude for Excel reads your open workbook – tabs, formulas, named ranges, cell values – and responds with specific cell citations. You do not need to copy-paste data or export CSVs.
Claude’s strength is multi-tab understanding, formula generation, and Power Query M code. Copilot is better for native in-cell edits. ChatGPT is better for actual calculations. Pick the tool that matches the task.
Claude cannot perform calculations or edit cells directly. It reads displayed values, not live formula results. Always verify Claude’s output by running formulas in Excel yourself.
The $20/month Claude Pro subscription pays for itself almost immediately. Even saving two hours per month puts you at a 6:1 return on investment. Most users report saving five to ten hours.
The Instructions field is your secret weapon. Spending two minutes writing your context – your role, your workbook structure, your formatting preferences – improves every answer Claude gives you going forward.
This Week’s Action Items
Next Up
In Chapter 2, we’ll explore Your First Win in Five Minutes.
