Split Excel on Mac Without Microsoft Office or Numbers
- If you don't have Microsoft 365 on Mac, Numbers can open .xlsx but has no built-in "export each sheet as a separate file" option.
- Our free browser tool splits the workbook directly — drag in, download each sheet individually or all at once.
- Works on every Mac: Intel, Apple Silicon (M1/M2/M3/M4), macOS Big Sur and newer. Browser-based means no install.
Table of Contents
Mac users who need to split a multi-sheet Excel workbook hit a gap: Apple Numbers opens .xlsx fine but has no "export every sheet as its own file" feature, and if you don't have a Microsoft 365 subscription ($9.99/month), Word/Excel isn't installed. The free options are clunky — save each sheet manually, or find an AppleScript. A browser tool sidesteps all of it.
Our sheet splitter runs in Safari, Chrome, Firefox, or any Mac browser. Drop the .xlsx onto the page and every tab becomes a separate downloadable file in seconds. No Office, no Numbers wrangling, no upload.
What Apple Numbers Can't Do Out of the Box
Numbers opens .xlsx files well enough — formulas survive, formatting is mostly intact, simple charts render. But the export options are single-sheet focused:
- You can export the current sheet as a CSV or an Excel file.
- You can't export every sheet at once as separate files.
- Numbers doesn't have an equivalent of Excel's VBA or Power Automate for batch operations.
Your realistic options without third-party help: open each tab, File > Export To > Excel or CSV, name the file, save, repeat for every tab. For a 12-tab workbook that's 12 manual exports and 12 dialog boxes. A browser tool does all 12 in one shot.
Step-by-Step on macOS
- Open our sheet splitter in Safari, Chrome, Firefox, or any Mac browser.
- Drag your .xlsx file from Finder onto the drop zone. (Alternative: click the drop zone to open Finder.)
- Each sheet appears with its row count.
- Click a sheet name to download that one sheet, or hit "Download All as CSVs" / "Download All as .xlsx" for a bulk zip-style grab.
- Files drop into your Downloads folder.
The 150 MB AI model from other tools on our site doesn't apply here — this is a lightweight spreadsheet parser, a few hundred kilobytes of JavaScript. First load is instant.
Sell Custom Apparel — We Handle Printing & Free ShippingApple Silicon (M1-M4) Performance
The sheet splitter is CPU-bound JavaScript and runs fast on every Mac. A 50-tab workbook parses in under 2 seconds on M1. A 200-tab workbook with heavy formatting parses in under 10 seconds on M3.
Memory use is proportional to the workbook size. A 50 MB workbook uses ~150 MB of browser RAM temporarily during parsing. Even 8 GB Apple Silicon Macs handle this fine because the rest of the system RAM is untouched.
If You're Comfortable With Terminal (Another Option)
Mac users comfortable with the command line can split Excel workbooks with Python. Install Python 3 (pre-installed on recent macOS), then:
pip3 install openpyxl pandas
python3 -c "
import pandas as pd
xl = pd.ExcelFile('yourfile.xlsx')
for name in xl.sheet_names:
xl.parse(name).to_csv(f'{name}.csv', index=False)
"
That gives you one CSV per sheet. It's legitimate if you're scripting this into a bigger workflow. For a one-off split, it's slower than dropping the file into a browser tool.
When You Should Just Use Numbers Manually
Two cases where manual Numbers export is the right answer:
- Two or three sheets, with unique formatting per tab. Manual export preserves everything exactly as Numbers renders it.
- You need to customize each export (rename, adjust layout, pick a specific range). Numbers' manual flow gives per-sheet control.
For anything bigger or less custom, a browser tool wins on time.
Split on Any Mac, No Office Needed
Drop the file in Safari or Chrome. Downloads land in your usual folder.
Open Free Sheet SplitterFrequently Asked Questions
Does this work on older Macs?
Any Intel Mac running macOS High Sierra or newer will work. Safari, Chrome, and Firefox on Mac all run the tool. Performance on very old Macs (pre-2015) may be slower but functional.
Can I split files from iCloud Drive?
Yes — download or copy the file from iCloud to your local Downloads, then drag it into the tool. Direct iCloud URL input isn't supported.
Will this break the file formatting?
xlsx output preserves formatting, formulas (within-sheet), and charts. CSV output loses formatting but keeps all data. Pick the format that matches your next step.
Do I need Apple Numbers installed?
No — the tool reads the .xlsx file directly without needing any spreadsheet app on your Mac. You can use it on a Mac with zero spreadsheet software installed.
Is there a Mac-native app that does this?
Some paid apps (Parabola, Magical.so) offer Mac-focused batch spreadsheet tools, starting at $15/month. For a one-time or occasional split, a free browser tool is the simpler answer.

