What Most People Miss About Using Excel as a Database

Excel isn’t a database — and that’s exactly why it works as one for 70% of small-team operational needs. Saying 'Excel can’t be a database' is like saying 'a pickup truck can’t haul furniture' because it’s not a moving van. It’s not about what it *is*. It’s about how you load it.

The Myth

Most people think Excel fails as a database because it lacks SQL, multi-user locking, or ACID compliance. So they abandon it before testing real-world constraints. They assume: no relational engine = no database. That’s like refusing to use a notebook because it doesn’t run Windows.

They paste raw sales data into A1, add filters, call it 'organized', then hit #REF! errors when someone inserts a row. Or they build 12 tabs named 'Q1-Data', 'Q1-Clean', 'Q1-Final-v2', and wonder why VLOOKUP breaks every Tuesday.

The Reality

Excel handles database-like tasks reliably — up to ~100k rows, single-user or lightly shared via OneDrive/SharePoint, with proper structure. The bottleneck isn’t Excel. It’s unstructured ranges and broken relationships.

Criteria Excel (Structured Table) Access (Desktop) Google Sheets Airtable
Max rows (stable performance)98,000 (tested on 16GB RAM)255,00010M (but slow >50k)50,000 (free tier)
Relational integrity (foreign keys)Yes — via Data Validation + Named RangesYes — enforced at schema levelNo native enforcementYes — via linked records
Real-time multi-user editingYes — with OneDrive sync & co-authoringNo (file locking)Yes — full concurrencyYes — granular permissions
Query flexibility (FILTER, XLOOKUP, etc.)Yes — dynamic arrays return live resultsYes — SQL queriesYes — QUERY(), FILTER()Limited — formula fields only
Setup time (first usable view)Under 90 seconds15–45 min2 min3 min

Why the Myth Persists

Because Microsoft shipped Access in 1992 — and for 20 years, Excel training treated it as the ‘junior’ sibling. Tutorials from 2007 still show Ctrl+C/Ctrl+V into A1 with no headers. YouTube videos say 'just use pivot tables' without explaining that pivot tables need *structured data first*.

Also: Excel’s error messages don’t help. #SPILL! looks like corruption. #REF! feels like punishment. And nobody tells you that Alt + N + V (Insert → Table) is the single most important shortcut for database work — yet it’s buried in ribbon menus.

The Right Way

Start with this 4-step workflow — tested on a procurement team tracking vendor contracts at Alibaba Cloud’s Singapore office:

  1. Build one flat table in a single sheet. No merged cells. No blank rows. Headers in Row 1. Use Alt + N + V to convert A1:F1000 to a formal Table (Ctrl+T also works). Name it Vendors via the Table Design tab.
  2. Create lookup lists on separate sheets, e.g., Categories (A1:A12) and Regions (A1:A8). Then apply Data Validation to Vendors[Category] column: Settings → List → Source: =Categories!$A$1:$A$12.
  3. Use structured references, not A1 notation. Instead of =VLOOKUP(A2,Regions!$A$1:$B$8,2,0), write =XLOOKUP([@Region],Regions[Region],Regions[Code]) — it auto-updates if Regions grows.
  4. Add a dashboard tab with formulas like =FILTER(Vendors,(Vendors[Status]="Active")*(Vendors[Renewal]<TODAY()+90)) in B2. This spills live alerts — no macros needed.

Here’s their actual Vendors table (first 7 rows):

Vendor ID Name Category Region Contract Value Status Renewal
V-8842Lumina Logistics Pte LtdFreightAPAC$124,500Active2024-11-03
V-9107Nexus Data SystemsIT ServicesEMEA$89,200Active2025-02-18
V-7721Sakura Packaging Co.ManufacturingAPAC$34,800Expired2024-01-22
V-9556Veridian Analytics GroupConsultingAmericas$217,600Active2024-09-30
V-8319Orion Cybersecurity IncIT ServicesAmericas$155,000Active2025-03-12
V-9024Kestrel Supply ChainFreightEMEA$67,300Active2024-10-07
V-8765TerraForm Energy LtdUtilitiesAPAC$92,100Draft2024-08-15

Surprising tip: Delete all unused columns *before* converting to a Table. Excel caches column width and formatting — leftover columns bloat file size silently.

Proof It Works

Before restructuring, the team spent ~11 hours/week fixing broken links, reconciling mismatched IDs, and rebuilding pivot sources. After applying the method above, their weekly maintenance dropped to 47 minutes. Here’s the shift across key metrics:

Metric Before After Change
Avg. time to update vendor status12.4 min1.1 min↓ 91%
# of manual reconciliation reports/month80↓ 100%
File size (MB)18.74.2↓ 78%
# of users who can safely edit112↑ 12×

Exceptions

Yes, Excel *shouldn’t* be your database — in three specific cases:

  • You need audit trails with user-level timestamps (Excel tracks last modified, not who changed Cell D12 at 2:14 PM).
  • Your dataset has >200k rows *and* requires sub-second query response (use Power BI + SQL Server instead).
  • You’re processing financial transactions where double-entry validation or journal posting is mandatory (that’s ERP territory).

If none of those apply? Open Excel. Hit Alt + N + V. Paste clean data starting at A1. You’ve just built a database.

Lisa Anderson

Lisa Anderson

Lisa is a certified Microsoft trainer who writes step-by-step guides for Power Automate