You open a workbook built by someone else and find a monster formula like this in a key cell. No comments. No documentation. You have no idea what it does, whether it's reliable, or if it's safe to touch.
This is super common in corporate Excel. You inherit files and need to understand them before you can use them, modify them, or explain them to your boss. Manually reverse-engineering these formulas takes forever. Claude is excellent at this — just paste the formula, give a bit of context, and it breaks everything down layer by layer.
- You paste any complicated formula and Claude explains it in plain English
- Claude points out the risky parts — hardcoded ranges, dangerous assumptions, array formula requirements
- Claude turns the explanation into clear documentation you can share with colleagues
- Claude tells you what you can safely change and what you should leave alone
Array formulas: the MATCH(1,(...)*(...),0) pattern is a classic array formula technique for multi-criteria lookup. In Excel 365 it works normally. In Excel 2019 or older it must be entered with Ctrl+Shift+Enter — Claude will flag this automatically.
Six steps — from copying the formula correctly to having documented, trusted knowledge of what it does.
Copy the formula from the formula bar
Click the cell, then copy the formula directly from the formula bar — not from the cell itself. The cell usually shows the result, not the actual formula.
Gather a bit of context
Note the sheet name, the cell address, and what the cell appears to show — a name, a number, a date. Also note any other sheet names mentioned in the formula. Claude needs to know what those sheets contain.
Paste into Claude with context
Give Claude the formula plus a short description of what the workbook is for. Ask it to explain the formula step by step, starting from the outermost function.
Ask follow-up questions
After the first explanation, ask specific things: "What happens if the value in A2 isn't found?", "Can I extend the range to row 1000?", "What would break if I rename the Sales sheet?" Claude answers each question in context.
Create documentation
Ask Claude to write a plain-English paragraph suitable for a colleague. Paste this into the workbook as a cell comment or in a dedicated DOCUMENTATION sheet.
Check safety before changing anything
Before modifying the formula or the data it uses, ask Claude what the consequences would be. This helps you avoid breaking other parts of the file you didn't know were connected.
Copy these prompts into Claude. Replace the bracketed placeholders with your actual formula and context.
Core explanation prompt
Follow-up questions prompt
Documentation prompt