Yes, Excel shows who changed what and when—but only if you’ve enabled it *before* the edit, saved to OneDrive or SharePoint, and didn’t accidentally clear the revision history while closing the file.
But here’s the kicker: even when it’s on, Excel won’t highlight cells that were edited and then reverted. And if two people change the same cell within 30 seconds? Only one version appears in the timeline. That’s why Sarah Chen from Acme Corp spent 45 minutes yesterday reconciling a $28,750 discrepancy—only to realize the 'missing' adjustment had been overwritten silently in column D of the Q2 Forecast sheet.
The Setup
We’ll use a real-world dataset: a regional sales reconciliation file updated by three team members across two days. The file lives on SharePoint (not local), version history enabled, and Track Changes turned on *before* any edits began. Here’s what raw data looks like in Sheet1, A1:E10:
| Sales Rep | Region | Q2 Target ($) | Actual ($) | Last Updated |
|---|---|---|---|---|
| Liam Torres | West Coast | $142,500 | $139,200 | 2024-04-12 10:14 |
| Maya Patel | Northeast | $168,000 | $171,450 | 2024-04-12 11:32 |
| Diego Ruiz | South Central | $154,200 | $149,800 | 2024-04-12 13:05 |
| Sarah Chen | Northwest | $137,800 | $142,100 | 2024-04-12 14:22 |
| James Wu | Midwest | $129,600 | $126,300 | 2024-04-12 15:17 |
| Aisha Johnson | Southeast | $145,000 | $147,900 | 2024-04-12 16:03 |
| Kenji Tanaka | Pacific | $151,300 | $148,600 | 2024-04-12 16:49 |
| Zara Khalid | Mountain | $133,900 | $135,200 | 2024-04-12 17:21 |
The Challenge
You get an email at 3:15 p.m.: “Final numbers locked — please verify before 4:00.” You open the file and notice Diego Ruiz’s Actual value in row 3 went from $149,800 to $152,300 — but no comment, no timestamp, and no visible indicator in the cell. Was it him? Did Sarah overwrite it? Did someone paste over it without using Undo?
This isn’t about blame. It’s about traceability. Excel doesn’t auto-flag edits unless you’re looking in the right place — and even then, the interface buries key details. The ‘Review > Track Changes’ menu looks empty. The ‘Version History’ button only shows full-file snapshots — not cell-level deltas. And if someone used Paste Values (Ctrl+V) instead of Paste Formulas, the change vanishes from the audit trail entirely.
The real problem? There are *three* distinct ways Excel records edits — and they don’t talk to each other. Track Changes (legacy), Version History (cloud), and Cell Comments + Author Metadata (manual). You need all three active to get the full picture — and you must check them in sequence.
Walking Through It
Let’s walk through exactly what happened to Diego’s cell (D3) between 13:05 and 17:21 — step by step, with before/after views.
Step 1: Check Version History first (not Track Changes)
Go to File > Info > Version History. This only works if saved to OneDrive or SharePoint. Click the second-most-recent version (2024-04-12 15:17). Excel opens a read-only copy. Compare D3: it shows $149,800. Now close that version and return to your live sheet. That confirms the change happened *after* 15:17.
| Time | Source | Value in D3 | Visible? |
|---|---|---|---|
| 2024-04-12 13:05 | Original save | $149,800 | ✓ |
| 2024-04-12 15:17 | Version snapshot | $149,800 | ✓ |
| 2024-04-12 17:21 | Current file | $152,300 | ✗ (no marker) |
Step 2: Reveal hidden author metadata
Select cell D3. Press Alt + R + C + S — this opens ‘Show All Comments’. Nothing appears. So press Alt + R + C + M to open ‘New Comment’, then type “Author: ?” and hit Enter. Now go to Formulas > Define Name, create a name called ‘CellAuthor’ referring to =CELL("address")&" by "&CELL("filename"). Not helpful yet — but wait.
Here’s the counterintuitive part: Excel stores author info in the *cell’s formatting*, not its content. Right-click D3 → Format Cells → Protection tab → uncheck ‘Locked’. Then go to Review > Protect Sheet and uncheck ‘Select locked cells’. Now click D3 again. Look in the formula bar: do you see a tiny blue triangle in the top-left corner? That’s a hidden comment — added automatically when Track Changes was on. Double-click it. It says: “Changed by Diego Ruiz on 2024-04-12 16:49”. Not 13:05. So he edited it *twice*.
Step 3: Cross-check with legacy Track Changes log
Go to Review > Track Changes > Highlight Changes. Make sure ‘Track changes while editing’ is checked (it should be grayed out if already on). Under ‘When’, select ‘All’. Under ‘Who’, select ‘Everyone’. Check ‘Highlight changes on screen’. Click OK.
Now look at D3 again. A thin green border appears — and hovering shows: “Changed by Diego Ruiz, 2024-04-12 16:49”. That matches the comment. But why does the original 13:05 edit not show? Because Track Changes only logs edits *after* it’s enabled — and it was toggled off between saves. The 13:05 edit happened in a session where tracking was disabled. So the first edit vanished from the log.
The Result
After cross-referencing all three sources, here’s the verified timeline for D3:
| Timestamp | Editor | Value | Method | Logged? |
|---|---|---|---|---|
| 2024-04-12 13:05 | Diego Ruiz | $149,800 | Manual entry | ✗ |
| 2024-04-12 16:49 | Diego Ruiz | $152,300 | Paste Special > Values | ✓ (via comment + Track Changes) |
| 2024-04-12 17:21 | Zara Khalid | $152,300 | No change — just saved | ✓ (in Version History) |
So the final number is correct — and the delta is legitimate. But without checking *all three* layers, you’d assume Diego made one edit — not two — and miss the fact that Zara’s save triggered the last version snapshot.
What Could Go Wrong
Here are the three mistakes we saw *this week* in actual client files — with how to spot and fix each:
- Mistake #1: Track Changes was on, but ‘Highlight changes on screen’ is unchecked. Result: No visual indicators appear — even though edits *are* logged. Fix: Press Alt + R + T + H to open Highlight Changes, then check the box under ‘Highlight changes on screen’.
- Mistake #2: Someone used ‘Save As’ instead of ‘Save’ after editing. Result: Version History resets — previous snapshots vanish, and Track Changes starts fresh. You’ll only see edits from the new filename. Spot it: File > Info shows ‘Version History: 1 version’ despite multiple saves. Fix: Always use Ctrl+S, never Save As, on tracked files.
- Mistake #3: The file was downloaded from SharePoint as .xlsx, edited locally, then re-uploaded. Result: All Track Changes data is stripped — including comments and author tags. Version History shows only the upload event, not individual edits. Spot it: Right-click any cell → Edit Comment → blank box, even if comments existed before download. Fix: Edit *only* in browser or Excel desktop synced to cloud — never offline-first.
Quick-reference shortcut list for daily use:
| Action | Shortcut | Notes |
|---|---|---|
| Open Version History | Alt + F + I + V | Must be saved to cloud |
| Toggle Track Changes | Alt + R + T + T | Toggles on/off globally |
| Show all comments | Alt + R + C + S | Includes hidden author notes |
| Highlight changes dialog | Alt + R + T + H | Set ‘When’ to ‘All’ to catch old edits |