Ever split a vacation rental and groceries only to spend Sunday night untangling crumpled receipts? You do not need a third-party subscription app to settle up. Apple Numbers works right on your Mac, iPad, or iPhone, and it stays private until you choose to share it. A simple two-table setup records every receipt and figures out who owes whom.
Build the Main Expense Table
Start with a single table for your raw spending entries. Name this table Expenses. A clean structure prevents confusion later when multiple people add purchases.
| Date | Description | Paid By | Amount | Category | Split Rule |
|---|---|---|---|---|---|
| 2026-07-04 | Rental cabin groceries | Alex | 184.50 | Food | Equal 4-way |
| 2026-07-05 | Highway tolls | Jordan | 22.00 | Travel | Equal 4-way |
| 2026-07-06 | Firewood and ice | Sam | 31.25 | Supplies | Equal 4-way |
Spelling matters here. If someone types "Alex" on Tuesday and "Alexander" on Thursday, your summary formulas treat them as separate people.
According to Apple's guide on cell controls, you can format the Paid By cells as a Pop-Up Menu. Set the menu items once with everyone's name. Then nobody can mistype a name from their phone.
Calculate Totals with SUMIF
Do not do settlement math inside the raw log. Create a second table on the same sheet named Settlement.
Turns out, you only need one core conditional formula to pull numbers across tables. Apple outlines how formulas reference different tables in their Numbers calculation guide.
List each participant's name in column A of the Settlement table. In cell B2, write this formula to sum what that person paid:
=SUMIF(Expenses::Paid By, A2, Expenses::Amount)
Drag the formula down column B for every person. It scans the entire log and pulls only their payments. Clean, automatic, and fast.
Settle Balances Fairly
Totaling what each person paid is only half the equation. You also need each person's fair share.
For an equal split across four people, their owed share in column C is the total group cost divided by four:
=SUM(Expenses::Amount) / COUNTA(A2:A5)
Column D then calculates the net balance with a basic subtraction:
=B2 - C2
A positive number means the group owes that person a refund. A negative number means that person owes money into the pot. Zero means fully squared away.
Attaching Receipts on Mac and iOS
Receipts stop arguments before they start. To be honest, paper receipts end up crumpled at the bottom of a backpack or forgotten in a car cup holder unless you log them right away, which makes Sunday night settlements a headache.
Numbers makes photo capture straightforward if you use a Mac:
- Right-click an empty cell in a Notes or Receipt column.
- Choose Insert from iPhone or iPad, then select Scan Documents or Take Photo.
- Snap the receipt with your phone camera, and it inserts directly into the table cell.
On an iPad or iPhone, tap the cell, tap the format brush or plus icon, and snap the photo right inside the sheet.
Sharing the Tracker Through iCloud
You do not need to export spreadsheets back and forth over email. Save the Numbers document in your iCloud Drive.
Tap the Share button in the toolbar, select Collaborate, and send invite links through Messages or Mail. Set permissions to "Can make changes" if everyone logs their own costs. If one person acts as trip treasurer, choose "View only" instead. Viewers can check running totals without accidentally overwriting formulas.
Pre-Settlement Checklist
Before anyone sends reimbursement requests, run through this quick audit:
- [ ] Confirm every raw expense has a corresponding receipt photo or description.
- [ ] Check the Paid By column for blank cells or unrecognized names.
- [ ] Verify that the sum of all Net Balances in column D equals exactly zero.
- [ ] Lock the raw data rows so past lines cannot be edited by accident.
If the net balances do not sum to zero, a formula reference is broken or someone typed an amount as plain text instead of currency.
Settle Up and Archive
Once balances hit zero, close out the sheet. Send reimbursement requests through your preferred payment app using the exact Net Balance figures.
Export a final PDF snapshot to keep as a permanent record. That way, nobody reopens an old trip file months later and accidentally edits past numbers.