Excel Name Box: How to Navigate, Name, and Work Faster

Learn how the Name Box helps with navigation and referencing.

You've probably glanced at that small box in the top-left corner of your spreadsheet a hundred times without thinking much about it. It just sits there showing "A1" or whatever cell you're on, and you ignore it. I did the same thing for longer than I'd like to admit, somewhere in my first couple of years of daily Excel use, before I realized it was doing almost nothing I was actually asking it to do. (That's the polite way of saying I left real productivity on the table for a while.)

The Excel Name Box is one of the most underused tools in the interface. Most people treat it as a cell address display. It's actually a navigation shortcut, a range-naming tool, an object labeler, and (here's the one that still surprises people in 2026) a recently-used-functions menu. This guide walks through each of those in order.

What You'll Be Able to Do, and What to Have Open Before Using the Excel Name Box

The Name Box sits at the top-left of your worksheet, immediately to the left of the formula bar. You need nothing special to follow along, just a workbook open in Microsoft Excel or Microsoft 365. By the end of this guide, you'll know how to jump to any cell or range instantly, define named ranges without touching a menu, name shapes and buttons for dashboards and macros, and avoid the mistakes that cause names to silently fail. If you're newer to the interface overall, the Excel Interface and Navigation Guide is a good companion to this one.


Step 1: Navigate to Any Cell Using the Excel Name Box

This is the fastest navigation trick most Excel users aren't using. Instead of scrolling through a 50,000-row dataset to find a specific cell, you can just type the address and go there directly.

How to jump to a cell reference instantly

  1. Click the Name Box (it'll highlight the current cell reference).
  2. Type your destination, a single cell like B14, or a range like A1:C10.
  3. Press Enter. Excel moves your cursor there and selects the range if you entered one.

That last part matters more than it sounds. Typing A1:D500 and pressing Enter selects all 2,000 cells in that range instantly. No click-dragging, no shift-clicking, no scrolling. I use this constantly when testing formulas across large ranges. It's one of those two-second habits that quietly saves you a lot of time over a full workday.

Keyboard shortcut to reach the Name Box (Windows and Mac)

On Windows, press Ctrl+G or F5 to open the Go To dialog, which handles similar navigation. To jump directly to the Name Box itself, the cleanest method is clicking it, but you can also use Alt+F3 on Windows to open the New Name dialog directly.

Mac users: there's no dedicated keyboard shortcut to activate the Name Box in Excel for Mac. You have to click it. That's a real gap, and almost no tutorial acknowledges it. If you're on a Mac and navigate between cells with the Excel Name Box regularly, clicking is your only option until Microsoft adds one.


Step 2: Create a Named Range Using the Name Box

Now that you can navigate with the Name Box, the next step is where things get genuinely useful. Named ranges are the thing I've pushed hardest in every lunch-and-learn I've run, and the Name Box is the fastest way to create them.

How to name a range of cells

  1. Select the cell or range you want to name.
  2. Click the Name Box (the current reference will highlight).
  3. Type your name (no spaces, use underscores: Q3_Revenue, not Q3 Revenue).
  4. Press Enter.

That's it. The name is defined and immediately available for use in formulas.

Press Enter. I can't stress that enough. If you click somewhere else instead of pressing Enter, the name doesn't save. I've seen people repeat this process three times wondering why their named range isn't showing up.

One side behavior worth knowing: while you're actively selecting multiple cells, the Name Box temporarily shows something like 3R x 4C, the row and column count of your current selection. It switches back to the cell reference once you stop. Useful when you need a quick count without writing a formula.

The payoff on named ranges is readability. =VLOOKUP(A2, EmployeeTable, 3, FALSE) tells you exactly what that lookup is pulling from. The raw range version tells you nothing except row numbers that'll be meaningless to whoever opens the file next month. I'll choose =SUM(Q3_Revenue) over =SUM(D2:D147) every single time, and named ranges defined this way also update dynamically when rows are inserted, which raw references sometimes don't.

How the Name Box differs from the Name Manager dialog box

The Name Box is for quick creation. The Name Manager dialog box, found under Formulas → Name Manager, is where you edit, audit, or delete named ranges. If you're managing more than a handful of names in a complex workbook, that's where you want to be. The Name Box gets you in fast; Name Manager keeps things organized.


Step 3: Use the Excel Name Box to Name Shapes, Buttons, and Other Objects

Most tutorials stop at cell ranges. Here's the part most tutorials skip: you can also use the Name Box to name shapes, pictures, buttons, and charts.

Click any object on your sheet, a shape, an image, or a form control button, and the Name Box will show its default name, something like Button 3 or Picture 1. Click the Name Box, type a meaningful name like RefreshDataBtn, and press Enter. That name is now what VBA references, what accessibility tools read, and what you'll see when organizing a dashboard with multiple overlapping objects. In financial models with several buttons triggering different macros, this is the difference between a file someone else can maintain and one that only you can debug.


Common Mistakes When Using the Name Box, and One Trick Most Excel Users Miss

Three mistakes come up constantly. First: forgetting to press Enter after typing a name. The name won't save. Second: using spaces in range names. Excel won't allow them, and it won't always tell you why it rejected the name. Use underscores instead.

Third, and this one's genuinely easy to stumble into: if you type an equals sign in the formula bar while a cell is selected, the Name Box switches to a dropdown of your ten most recently used functions. It's not broken. It's a feature. Useful once you know it's there, confusing before you do.

For anything beyond basic naming, like editing a range's scope, checking for broken references, or deleting old names, use Name Manager. The Name Box is the fast lane. Name Manager is the control panel. Both are worth knowing. If you're still getting comfortable with Excel's interface overall, the Excel for Beginners: Complete Starter Guide covers the foundational context that makes all of this click.

If you take one thing from this article: stop writing raw range references in your formulas. Name the range via the Name Box first. Your formulas become readable, your workbook becomes auditable, and the next person to open that file (including future you) won't have to reverse-engineer what D2:D147 was supposed to mean.

Frequently Asked Questions

What is the Name Box in Excel and where is it located?

The Name Box is the small input field at the top-left of the Excel worksheet, directly to the left of the formula bar. It displays the active cell reference by default, but it also serves as a navigation tool, a range-naming interface, and an object labeler.

What does the Name Box show when I select multiple cells at once?

While you're actively selecting a multi-cell range, the Name Box temporarily displays the row and column count of your selection, for example 3R x 4C. Once you release the mouse, it switches back to showing the cell reference of the active cell in the selection.

What is the keyboard shortcut to access the Name Box in Excel?

On Windows, there's no single shortcut that activates the Name Box directly. Most users click it or use Ctrl+G to open the Go To dialog for similar navigation. On Mac, there's no dedicated shortcut for the Name Box at all; clicking it is the only option.

How is the Name Box different from the Name Manager dialog box?

The Name Box is for quickly creating named ranges. Select a range, click the Name Box, type a name, and press Enter. The Name Manager (found under Formulas → Name Manager) is where you edit, delete, and audit existing named ranges, including their scope and reference ranges.