Step-by-step guide

How to make a table
in Excel

The difference between a plain range and an Excel Table is bigger than it looks. Here's what you're missing.

EP
ExcelPro·Sep 11, 2026

What an Excel Table actually is

An Excel Table (capital T) is a special structured range that Excel treats differently from a plain block of data. It has a name, automatic formatting, built-in filters, and — most importantly — it expands automatically when you add new rows or columns.

Most beginners never use Tables. Most experienced users use them for almost everything.

How to create a Table

1
Click anywhere inside your data

You don't need to select the whole range — just click one cell inside the data.

2
Press Ctrl + T

Or go to Insert → Table. Excel detects your data range automatically.

3
Confirm the range and click OK

Check "My table has headers" if your first row contains column names. Click OK.

What changes when you create a Table

Structured references — the superpower

Inside a Table, you can reference columns by name instead of cell addresses. If your Table is called Table1 and has a column called Sales:

=SUM(Table1[Sales]) -- Always sums the entire Sales column, even as new rows are added -- Compare to =SUM(B2:B100) which misses any rows added after B100
💡 Name your Table something meaningful

Click anywhere in the Table → Table Design tab → change "Table1" to "SalesData" or "Employees". Your formulas become self-documenting: =SUM(SalesData[Revenue]) tells you exactly what it does.

When not to use a Table

Tables don't work well when you need to merge cells, when you're working with summary rows that shouldn't expand, or when you're building a layout-heavy report. For raw data storage and analysis, always use Tables. For formatted reports and dashboards, plain ranges are sometimes more flexible.

Practice what you just learned

ExcelPro has 880+ hands-on exercises across 9 tracks — type real formulas, get instant feedback.

Start practising free →
Keep reading