In Excel: click any cell inside the table, then Table Design ▸ Table Name (top-left of the ribbon) and type a name — no spaces, and it must not look like a cell reference.
On this page7
Convert the range to a Table first with Ctrl+T if it is not one already.
Click any cell inside it and open the Table Design tab (Table on Mac).
Type into the Table Name box at the far left and press Enter.
Use a name with no spaces that cannot be mistaken for a cell reference — SalesData, not Sales Data or Q1.
Check Formulas ▸ Name Manager to see every table and defined name in one list.
What this does
Every Table gets an automatic name — Table1, Table2 — and that name is what structured references use: =SUM(Table1[Amount]). Renaming it to SalesData turns every formula that touches it into something readable, =SUM(SalesData[Amount]), and every existing formula updates automatically when you rename. The rules are the same as for defined names: no spaces (use an underscore or CamelCase), 255 characters maximum, must start with a letter or underscore, must be unique across the workbook, and must not be something Excel could read as a cell address — Q1 is rejected because it is a cell, Q1_Sales is fine. The payoff beyond readability is that a structured reference grows with the table: add a row and =SUM(SalesData[Amount]) includes it without anyone editing the formula, which is the property a fixed A2:A500 range does not have. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. For “rename a table in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a layout choice that keeps the sheet readable and sortable useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
A sales range converted with Ctrl+T becomes Table1. Click inside it, Table Design ▸ Table Name ▸ type SalesData ▸ Enter. A formula that read =SUM(Table1[Amount]) now reads =SUM(SalesData[Amount]) on its own. Append a row at the bottom of the table and the total includes it immediately — no range to extend, nothing to remember. A named table is what makes a formula legible a year later, and structured references are the only ranges in Excel that grow by themselves. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. Here is the takeaway for “rename a table in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.
Common mistakes
- Leaving tables as Table1, Table7, Table12 and then having to open each to find out what it holds.
- Using a space in the name, which Excel rejects without saying which character was the problem.
- Choosing a name that reads as a cell address (
Q1,AB12) — Excel refuses it for that reason. - Assuming renaming breaks formulas; structured references update automatically.
- Confusing a table name with a defined range name — they live in the same namespace and cannot collide.
Frequently asked questions
How do I name a table in Excel?
Click inside the table, then Table Design ▸ Table Name, type the name and press Enter.
Why will Excel not accept my table name?
It contains a space, starts with a digit, duplicates another name, or could be read as a cell reference such as Q1.
Does renaming a table break my formulas?
No — every structured reference to it updates automatically the moment you rename.
Where do I see all my table names?
Formulas ▸ Name Manager lists tables alongside defined names, with the range each one covers.
Other ways people ask this
On the way here you may have searched this as “excel rename table”, “excel rename a table”, “how do you rename a table in excel” and “rename tables in excel” — it is all the same task, and this page is the single, complete answer to it.
Why do people search for this in so many different ways?
Because the same task has many names. “excel rename table”, “excel rename a table”, “how do you rename a table in excel” all point at the one operation explained on this page, which is why they all lead here.