What Most People Miss About Apple’s Spreadsheet Program vs Excel
By James Chen
Yes, Apple has a spreadsheet program: Numbers. But if you expect it to open your Excel files and behave the same way, you’ll lose formatting, break formulas, and waste two hours debugging cell references.
The Myth
Most people assume Numbers is Apple’s ‘version of Excel’ — same interface, same logic, just with rounded corners and a lighter font. They think opening an Excel file in Numbers is like opening a Word doc in Pages: harmless, maybe even seamless. That belief leads straight to broken SUMIFS, vanished named ranges, and pivot tables that vanish on export.
It’s not that Numbers is bad. It’s that it’s built on a different philosophy — one where rows and columns are *visual containers*, not structural anchors. In Excel, A1 means something absolute. In Numbers, A1 is relative to the current table — and yes, a single sheet can hold five separate tables, each with its own A1.
The Reality
Numbers handles basic arithmetic, charts, and light collaboration well — but fails hard on Excel’s core workflow pillars: structured references, compatibility with legacy functions, and workbook-level consistency.
Here’s what actually works — and what doesn’t — when moving between them:
Feature
Excel (Microsoft 365)
Numbers (macOS 14.5)
Works Cross-Platform?
SUMIFS with >3 criteria
✓ Works in B2:C10, no limits
✗ Fails silently past 2 criteria
No
Named ranges (e.g., "SalesQ1")
✓ Defined globally, usable across sheets
✗ Scoped to individual tables only
No
XLOOKUP / FILTER / SEQUENCE
✓ Native, dynamic arrays
✗ Not supported — uses LOOKUP(), VLOOKUP() only
No
Conditional formatting with formulas
✓ Supports =$B2>=$E$1
✗ Only lets you pick from preset rules
No
Export to .xlsx preserving formulas
✓ Full fidelity
✗ Loses array formulas, nested IFs, and all LET() logic
No
Why the Myth Persists
Apple launched Numbers in 2007 — the same year Excel 2007 dropped ribbon UI and added conditional formatting. Back then, spreadsheets were mostly used for budgets and mailing lists. Numbers looked slicker, loaded faster, and handled images and text callouts beautifully.
But Excel evolved. We got Power Query in 2010, dynamic arrays in 2019, and native Python integration in 2023. Numbers didn’t keep pace. Its last major update was in 2021 — and it still lacks support for Excel’s LAMBDA function or even basic LET().
Worse? YouTube tutorials from 2018 still rank #1 for ‘how to use Numbers like Excel’. One video titled ‘Excel Alternative for Mac Users’ shows someone copying =SUM(A1:A10) into Numbers… then declaring victory. (Trust me, I learned this the hard way — spent three days rebuilding a forecasting model after assuming ‘it’ll just work’.)
The Right Way
If you’re on a Mac and need Excel-like power: use Excel. Microsoft’s macOS version runs natively, supports all Office 365 features, and syncs flawlessly with OneDrive.
But if you *must* start in Numbers — say, your team shares via iCloud — follow this workflow:
1. **Never build complex logic in Numbers first.** Use it for wireframing, quick mockups, or visual dashboards — not calculations.
2. **When importing Excel data: paste values only (Ctrl+Shift+V), not formulas.** Then rebuild formulas manually *after* confirming structure.
3. **Use Alt+F1 → Alt+E → Alt+S to open Excel’s ‘Save As’ dialog** — then choose ‘Excel Workbook (.xlsx)’ *before* sharing externally. Don’t rely on Numbers’ auto-export.
Here’s a real example: Sarah Chen at Acme Corp built a quarterly sales tracker in Numbers (Sheet “Q2-2024”). She used =SUMIF(B2:B50,"West",C2:C50) — which worked. But when she tried adding a second condition with =SUMIFS(C2:C50,B2:B50,"West",D2:D50,">=2024-04-01"), Numbers returned zero. No error. Just silence.
She copied the raw data into Excel (A1:D50), rewrote the formula as =SUMIFS(C2:C50,B2:B50,"West",D2:D50,">="&DATE(2024,4,1)), and got $247,891 — the correct total.
Proof It Works
Below: identical raw data before and after moving from Numbers to Excel. Same dataset. Same goal: total West-region revenue for April onward.
Row
Region
Revenue
Date
Numbers Result
Excel Result
2
West
$42,300
2024-04-12
—
—
3
East
$18,950
2024-04-15
—
—
4
West
$61,200
2024-05-03
—
—
5
West
$33,750
2024-03-28
—
—
6
West
$56,120
2024-04-22
$0
$247,891
7
South
$29,410
2024-04-30
—
—
8
West
$44,521
2024-05-11
—
—
Exceptions
There *are* cases where Numbers isn’t just fine — it’s better.
• You’re building a one-page budget for a school PTA: clean layout, embedded photos, live charts that resize with text — all without touching a formula.
• You need to share a live-updating dashboard with non-technical stakeholders via iCloud — and nobody will edit formulas, just view totals.
• You’re using AppleScript automation on macOS and want tight integration with Pages or Keynote. Numbers plays nicer there than Excel ever will.
But here’s the counterintuitive tip: if you’re collaborating with Windows users or plan to hand off to finance/accounting teams, don’t even open Numbers. The moment you save as .numbers, you’ve created a dead-end file.
So — what should you do *right now*?
Open Excel (not Numbers), and try this:
1. Type =LET(x,A1:A5,y,B1:B5,SUM(x*y)) in cell C1.
2. Press Enter. Watch it return the sum of products — no Ctrl+Shift+Enter needed.
3. Now try that exact formula in Numbers. It’ll show ‘#NAME?’.
That’s your signal. Not a bug. A boundary.
Task
Do This
Don’t Do This
Open existing .xlsx
Use Excel for Mac (free with Microsoft account)
Double-click and let Numbers auto-open it
Share with external partners
Export from Excel as .xlsx — never .numbers
Send a link to iCloud Numbers and assume they’ll ‘just get it’
Build a new financial model
Start in Excel — even on Mac
Start in Numbers ‘to keep it simple’, then convert later
James Chen
James is a workplace technology analyst who evaluates office tools and productivity platforms. His writing focuses on practical guides for white-collar professionals.