Getting Started with Claude in Excel
Claude understands your entire workbook — from nested formulas to multiple tab dependencies. Get explanations with cell-level citations, and update assumptions while preserving formulas.
This lesson is original educational writing based on this video by Anthropic (published January 30, 2026). All credit for the original content goes to the creators.
1. How Claude reads a workbook
Most Excel users have experienced the frustration of inheriting a workbook they did not build. There is a tab called “Model” with outputs that feed a tab called “Summary” that feeds a tab called “Dashboard,” and none of it has documentation. Understanding even one number on the Dashboard can mean tracing through fifteen formulas across three sheets. This is the problem Claude solves at the workbook level.
When Claude is active in your Excel session, it does not read only the cell you are currently looking at. It reads the entire workbook — every tab, every named range, every formula, every value. This is a fundamentally different capability from Excel’s own help features or from pasting a range into a chat window. Claude can answer questions that require simultaneously understanding Sheet1!B12, which depends on the Assumptions tab at row 4, which is referenced by a named range called DiscountRate, which is itself referenced by three other formulas across two other tabs. It holds all of that in context at once.
This whole-workbook awareness is what makes Claude genuinely useful for complex financial models, multi-tab reporting workbooks, and any spreadsheet where understanding one number requires understanding the entire data flow. You are not getting cell-level help. You are getting a model that has read the whole document and can reason about any part of it in relation to any other part.
2. Getting formula explanations with cell citations
The most immediate use case when you open a complex workbook is simply understanding what it does. Claude can explain any formula in plain language, and importantly, it grounds its explanations in specific cell references so you can verify each step independently.
Asking for a formula explanation
The simplest prompt is direct:
“Explain what the formula in cell D14 does.”
Claude will return something like: “Cell D14 multiplies the unit price in C14 by the quantity in B14, then applies the discount rate from the Assumptions tab (cell B4, named DiscountRate, currently 0.12). The result is the net revenue for this line item after the 12% discount.” Every number, every reference, every tab name is explicit. You can click to each cited cell and verify that Claude’s description matches reality.
For more complex nested formulas — INDEX/MATCH inside an IF inside an IFERROR, for example — Claude explains each layer from the inside out. It identifies which part handles the error case, which part does the lookup, and which part formats the result. This kind of layered explanation is something that would previously require either asking a colleague or spending ten minutes stepping through the formula manually.
Tracing where a number comes from
A common question when reviewing a model is not “what does this formula do” but “where does this number come from.” These are different questions. A formula explanation tells you the logic. A provenance trace tells you the entire dependency chain — every upstream input that affects the value you are looking at.
You can ask Claude for this directly:
“Trace all the inputs that affect the value in E30. Start from E30 and work backwards to every cell that influences it, including cells on other tabs.”
Claude will produce a dependency map in plain language, listing each upstream cell, its current value, and which tab it lives on. For cells with many upstream dependencies, Claude can also summarize which inputs have the most leverage — which cells, if changed, would move E30 the most. This is exactly the kind of sensitivity awareness that makes a model useful for scenario analysis.
3. Updating assumptions without breaking formulas
The most delicate operation in any complex workbook is changing an input. In a well-built model, changing an assumption propagates correctly through dependent formulas. In a poorly built model — or in any model you did not build and do not fully understand — changing an assumption can silently break calculations downstream, sometimes in ways that are not immediately visible.
Claude can help you make assumption changes safely in two ways: by first explaining the blast radius of a change (which cells and tabs are affected), and by making the change itself in a way that preserves the formula structure rather than overwriting it.
Understanding the blast radius before you edit
Before changing any cell in an unfamiliar workbook, ask:
“If I change the value in Assumptions!B4 from 0.12 to 0.15, which cells on other tabs will be affected, and which of those affect final output cells?”
Claude will list the downstream cells and, importantly, flag any cells where the change might interact with conditional logic (IF statements, MIN/MAX caps, threshold-based lookups) in a non-obvious way. For example, if a formula has a hard-coded floor like =MAX(D14, 0) and your new assumption would push D14 negative, Claude can warn you before you make the change.
Making the change safely
When you are ready to update an assumption, you can ask Claude to make the change and confirm what happened:
“Update the discount rate in Assumptions!B4 to 0.15 and confirm the new value of the net revenue total in Summary!E30.”
Claude makes the targeted edit and immediately reads the downstream output to confirm the result is consistent with expectation. If the output looks wrong, it can trace why the propagation did not behave as anticipated.
When formulas break anyway
Even with careful prompting, formula changes in poorly documented workbooks can produce unexpected results. The most common failure modes are:
- Hardcoded overrides — a cell that looks like a formula is actually a hardcoded value that was manually typed over the formula at some point. Claude reads the value correctly but the value is not dynamic.
- Circular references — Excel allows circular references in iterative calculation mode. Claude will note when a cell is part of a circular dependency, but the behavior of the dependency may be surprising.
- Hidden sheets — if data lives on a very hidden sheet (not just hidden, but
xlSheetVeryHidden), Claude may not be able to read it depending on the Microsoft 365 environment configuration.
For each of these, the right response is to ask Claude to describe exactly what it sees in the cell — the formula string, the current value, and any error state — before drawing conclusions.
Check your understanding
4 questions · your answers are saved in this browser only
-
1. When Claude reads your Excel workbook, what does it have access to?
-
2. You want to know which cells would be affected if you changed Assumptions!B4. What is the best prompt?
-
3. What does Claude do when it updates an assumption value in a workbook?
-
4. Which of the following is a known limitation of Claude in Excel?
4. Tab dependency analysis and common use cases
Understanding how tabs relate to each other is often the most valuable orientation step when working with a complex workbook. Claude can generate a plain-language map of the data flow across tabs — which tabs feed which, which tabs are purely input tabs (no formulas drawing from other tabs), and which tabs are purely output tabs (no data flowing out of them to other tabs).
Generating a tab dependency map
Ask Claude directly:
“Generate a tab dependency map for this workbook. For each tab, tell me whether it’s primarily an input, a calculation, or an output tab. List which tabs feed into which.”
This gives you orientation in under a minute that would otherwise require manually auditing every formula on every sheet. Once you have the map, you can work much more efficiently: you know which tabs you need to update for a given scenario, and you know which tabs hold the outputs you care about.
Common use cases across industries
The whole-workbook awareness Claude provides is valuable across a wide range of professional contexts:
Financial modeling: Complex three-statement models (P&L, balance sheet, cash flow) with cross-tab dependencies become navigable. Ask Claude to trace how a change in revenue growth rate on the Assumptions tab flows through to free cash flow on the Output tab, with each intermediate calculation identified.
Operations and reporting: Multi-region or multi-product reporting workbooks often have one summary tab that draws from dozens of regional or product-level tabs. Claude can explain how the roll-up works without you needing to open each source tab manually.
HR and headcount planning: Headcount models with complex benefits calculations, tiered compensation, and hiring schedule dependencies become auditable. Ask Claude to confirm that your total comp calculation for a given role accounts for all the benefit rows, not just base salary.
Project budgeting: Multi-phase project budgets where costs in later tabs depend on resource allocations in earlier tabs benefit from Claude’s cross-tab tracing when you need to understand which phase drives the majority of a given cost category.
Build it yourself
Follow these exact steps to reproduce it yourself · estimated time: ~10 min
Prerequisites
- A Microsoft 365 subscription with Claude enabled in Excel
- An Excel workbook with at least two tabs and some cross-tab formula dependencies
- Optionally: a workbook you inherited and do not fully understand — this is the ideal learning scenario
Step 1 — Open your workbook with Claude active
Open Excel and navigate to the Home tab or the Claude sidebar (exact location depends on your Microsoft 365 version). Open the workbook you want to analyze. Both the workbook and Claude need to be active in the same session.
Step 2 — Get workbook orientation
Start with a high-level orientation before diving into specific cells. Ask:
Give me an overview of this workbook. How many tabs does it have?
Which tabs appear to be inputs, which are calculations, and which are outputs?
What does this workbook appear to be used for?Read Claude’s response. You now have a map of the workbook before touching a single cell.
Step 3 — Explain a specific formula
Navigate to a cell that contains a formula you want to understand. Ask Claude:
Explain what the formula in [SheetName]![CellRef] does.
Cite each cell it references by name and current value.
What business question does this formula answer?Claude’s response will cite every upstream cell. Click each cited cell to verify the description matches reality. This verification step builds trust in Claude’s reading of your specific workbook.
Step 4 — Trace an upstream dependency
Pick an output cell — a total, a final figure, a summary metric — and ask Claude to trace it back to its inputs:
Trace all inputs that affect [SheetName]![CellRef].
List every upstream cell, what tab it is on, and its current value.
Which inputs have the most leverage on this output?Review the dependency list. Identify any upstream cells whose values you were not aware of.
Step 5 — Make a safe assumption update
Identify an assumption cell you want to change (discount rate, growth rate, headcount, etc.). Before changing it, ask:
If I change [SheetName]![CellRef] from [current value] to [new value],
which cells downstream will be affected? Flag any conditional logic
(IF, MIN, MAX, threshold lookups) that might interact with the new value.After reviewing the blast radius, make the change:
Update [SheetName]![CellRef] to [new value].
Then tell me the new value of [output cell] and confirm it changed as expected.Expected result
You understand how your workbook is structured, can explain any formula in it, and have safely updated at least one assumption while verifying the downstream effect. You have gone from “I inherited this file and do not know what it does” to “I can navigate and update this model confidently” in under ten minutes.
Where to go next
- For cross-app workflows that combine Excel and PowerPoint, see One Continuous Session Across Excel and PowerPoint.
- To learn how to pull your Excel data directly into data-driven presentation slides, see Working Smarter with Claude in PowerPoint.
- For broader context on how Claude integrates with Microsoft 365 and the Foundry platform, see Claude on Microsoft Foundry.