The Tool Desk
Outbyte PC Repair FREERepair Windows errors before they cause bigger problemsFix Now →Outbyte Driver Updater FREEScan for outdated or missing drivers - takes under a minuteDriver Scan →Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.
In desktop Excel, Delete should be available after you select an ordinary defined name in Name Manager. If the button is grayed out, first exit cell-edit mode and click a name row. Then check whether the item is a table name, whether the workbook is editable, and whether the name is hidden or VBA-created. The right fix depends on which kind of item you are trying to remove.
1. Exit cell-edit mode and select a name row
Name Manager cannot be used while you are editing a cell. This can happen after pressing F2, double-clicking a cell, or typing in the formula bar. Press Enter to commit the edit or Esc to cancel it, then open Formulas → Name Manager again.
In Name Manager, click the row for the name itself—not a column heading or empty area—and check whether Delete becomes available. You can select adjacent names with Shift-click or by dragging, and select separate names with Ctrl-click. Microsoft documents this interface for Microsoft 365, Excel 2024, Excel 2021, Excel 2019, and Excel 2016. See Microsoft’s Name Manager instructions.
2. Check what kind of item you selected
Name Manager lists both defined names and table names. Use the item’s icon and the Scope and Refers to columns to identify it:
#1 Best Overall
- Compact Mouse: With a comfortable and contoured shape, this Logitech ambidextrous wireless mouse feels great in either right or left hand and is far superior to a touchpad
- Durable and Reliable: This USB wireless mouse features a line-by-line scroll wheel, up to 1 year of battery life (2) thanks to a smart sleep mode function, and comes with the included AA battery
- Universal Compatibility: Your Logitech mouse works with your Windows PC, Mac, or laptop, so no matter what type of computer you own today or buy tomorrow your mouse will be compatible
- Plug and Play Simplicity: Just plug in the tiny nano USB receiver and start working in seconds with a strong, reliable connection to your wireless computer mouse up to 33 feet / 10 m (5)
- Better than touchpad: Get more done by adding M185 to your laptop; according to a recent study, laptop users who chose this mouse over a touchpad were 50% more productive (3) and worked 30% faster (4)
- Defined name: A name for a cell, range, formula, or constant. Scope is either Workbook or a specific worksheet.
- Table name: The name attached to an Excel Table, often something like
Table1or a custom label. It is managed through the table tools, not like an ordinary named range. - Print-area or print-title name: A special worksheet-level name that controls printing. Do not remove it unless you intend to change the print setup.
For a table name, select a cell in the table and open Table Design. You can rename the table there. If you want to eliminate the table structure entirely, use the option to convert it to a range; if the table is no longer needed, delete the table itself. Converting a table keeps its data but can affect structured-reference formulas and table behavior, so do not remove the table just to tidy the name list. See Microsoft’s table-to-range guidance. Table-name behavior can vary by Excel build, so treat a table entry as a diagnostic clue rather than assuming every build disables Delete for it.
3. Confirm the workbook is editable
Save a copy first, then check whether the workbook is open read-only, in Protected View, or with editing disabled. If it is stored in a shared location, confirm you have permission to edit and save it. Check Review → Protect Workbook for workbook-structure protection and Review → Unprotect Sheet for sheet protection; only remove protection if you are authorized and know the password.
Workbook protection and worksheet protection are different, and neither should be assumed to be the cause of every disabled Delete button. Microsoft describes workbook protection as restricting structural changes such as adding, deleting, moving, hiding, unhiding, or renaming worksheets; worksheet protection controls permitted worksheet actions. See workbook protection and worksheet protection.
What’s actually slowing this PC down?
Pick the symptom - the matching free tool is one click away.
Rank #2
- Pair and Play: With fast, easy Bluetooth wireless technology, you’re connected in seconds to this quiet cordless mouse —no dongle or port required
- Less Noise, More Focus: Silent mouse with 90% reduced click sound and the same click feel, eliminating noise and distractions for you and others around you (1)
- Long-Lasting Battery Life: Up to 18-month battery life with an energy-efficient auto sleep feature, so you can go longer between battery changes (2)
- Comfortable, Travel-Friendly Design: Small enough to toss in a bag; this slim and ambidextrous portable compact mouse guides either your right or left hand into a natural position
- Long-Range: Reliable, long-range Bluetooth wireless mouse works up to 10m/33 feet away from your computer (3)
4. Use Name Manager filters, including for broken names
If you cannot find the item, open Name Manager’s Filter menu and check the views for workbook-scoped names, worksheet-scoped names, defined names, table names, and names with errors. A worksheet-level name can be easy to miss if you are looking only for workbook-scoped names.
A name whose Refers to field contains #REF!, #VALUE!, or another error is still a defined name. An error does not by itself make the name undeletable: select the row and try the normal Delete command. Inspect the reference before removing it, since the name may still be used intentionally. Microsoft documents the Name Manager filters and scope column in its Name Manager guide.
5. If the name is missing, it may be hidden or VBA-created
Name Manager does not display hidden names or names defined through VBA. So a name you know exists may not appear in the dialog at all. This can occur with templates, add-ins, imported workbooks, and other programmatically created content. The Name Box is not a replacement: it can select a named range, but names cannot be edited or deleted there. See Microsoft’s Name Box guidance.
Rank #3
- 【Dual Mode Wireless Bluetooth Mouse】: Switch easily between two devices—connect one via Bluetooth (BT5.2/3.0) and the other using a 2.4G USB receiver. No drivers needed; just plug and play. Enjoy a reliable connection up to 33 feet. Note: You can't use both modes simultaneously; the USB receiver is stored in the mouse.
- 【Rechargeable Wireless Mouse】: Equipped with a 500mAh lithium-ion battery, it charges in 2 hours for over 7 days of use and 30 days on standby. The mouse sleeps after 5 minutes of inactivity to save power and can be woken with any click.
- 【Colorful LED Breathing Light】: Features 7 colorful LED lights that change randomly, adding a fun atmosphere to your workspace.
- 【Portable Mouse】Compact size (4.4 x 2.3 x 1.1 inches) makes it easy to fit in your laptop bag. Lightweight and ergonomic, it's perfect for travel. Contact us anytime for support.
- 【Wide Compatibility】: Works with laptops, PCs, tablets, and smartphones across various operating systems, including Android, Windows, and Mac. Ideal for home, office, and travel.
If you are comfortable using macros, make a backup copy and inspect names before deleting anything. In desktop Excel, press Alt+F11 to open the Visual Basic Editor, insert a standard module, and run this listing macro. It prints each name, visibility, and reference to the Immediate window; open that window with Ctrl+G.
Windows Errors? Fix Them Before They Spread
Repair common Windows errors and clear accumulated junk for a smoother, more stable PC - no reinstall needed.Free scan · no reinstallCrashes, No Sound, or Screen Glitches?
Random freezes, missing sound and display glitches usually trace back to one bad driver. Find and replace yours safely.Free scan · under a minuteSub ListNames()
Dim nm As Name
For Each nm In ThisWorkbook.Names
Debug.Print nm.Name, nm.Visible, nm.RefersTo
Next nm
End Sub
After confirming the exact name and scope, a workbook-scoped name can be removed with:
Sub DeleteKnownName()
ThisWorkbook.Names("OldName").Delete
End Sub
A worksheet-scoped name can be removed with:
Sub DeleteSheetScopedName()
ThisWorkbook.Worksheets("Sheet1").Names("OldName").Delete
End Sub
Replace the sample name and sheet with the exact values you found. Workbook-level and worksheet-level names can have similar text, and a worksheet-level name can take precedence on its sheet. Do not use a macro that deletes every name as a shortcut. Excel’s VBA documentation covers the Name object and Names collection.
Rank #4
- Your hand can relax in comfort hour after hour with this ergonomically designed mouse. Its contoured shape with soft rubber grips, gently curved sides and broad palm area give you the support you need for effortless control all day long.
- You’ve got the control to do more, faster. Flipping through photo albums and Web pages is a breeze, especially for right-handers—with three standard buttons plus Back/Forward buttons that you can also program to switch applications, go full screen and more. And side-to-side scrolling plus zoom gives you the power to scroll horizontally and vertically through your music library, maps and Facebook feeds, and zoom in and out of photos and budget spreadsheets with a click.* * Requires Logitech SetPoint software (Windows) or Logitech Control Center software (Mac OS X)
- Two years of battery life practically eliminates the need to replace batteries. ** The On/Off switch helps conserve power, smart sleep mode extends battery life and an indicator light eliminates surprises. ** Battery life may vary based on user and computing conditions.
- The tiny Logitech Unifying receiver stays in your laptop. There’s no need to unplug it when you move around, so there’s less worry of it being lost. And you can easily add compatible wireless mice and keyboards to the same wireless receiver.
6. If Delete is still disabled
- Save a backup, close the workbook, and reopen it in desktop Excel with editing enabled.
- Try selecting an ordinary defined name in a new blank workbook. If Delete works there, the issue is likely specific to the original file or item; if it does not, investigate Excel, an add-in, or an organization-managed setting.
- Restart Excel. If the problem persists across files, test with add-ins disabled or ask your administrator to check relevant policies.
- If only one workbook is affected, save a copy under a new
.xlsxor.xlsmfilename, as appropriate. You can also use Open and Repair from Excel’s Open dialog on a copy. Repair may alter or remove recoverable content, so retain the original. - If the workbook belongs to someone else or is password-protected, ask its owner or administrator for help. Do not try to bypass protection.
These are isolation and recovery steps, not proof that a workbook is corrupted. If you cannot identify the name safely, keep the backup and get help from the file owner or an Excel specialist rather than editing the workbook package directly.
Independent reader supportYour contribution helps us test, update, and keep practical guides available for everyone.Before deleting a name
Read its Refers to value, scope, and any comment. Defined names may support formulas, data-validation lists, charts, conditional formatting, PivotTables, macros, external links, print settings, or other workbook features. Names beginning with an underscore or system-like labels such as _FilterDatabase may serve a purpose. Deleting a name can break anything that depends on it; Microsoft notes that names are used with features including PivotTables, the Data Model, and Power BI. See Microsoft’s guide to defining and using names.
Frequently Asked Questions
Can I delete a name from the Name Box?
No. The Name Box can select a named range, but use Formulas → Name Manager to manage or delete names.
Best Value
- 【Plug and Play for Home/Office/School】The wireless computer mouse features 2.4GHz connectivity, delivering a stable, interference-free connection up to 32ft. Designed for 𝐦𝐞𝐝𝐢𝐮𝐦 𝐭𝐨 𝐥𝐚𝐫𝐠𝐞 𝐬𝐢𝐳𝐞𝐝 𝐡𝐚𝐧𝐝𝐬, it ensures comfortable use all day. Simply plug in the USB-A receiver for instant pairing—no drivers needed. 📌📌 If the mouse isn’t suitable, place the USB receiver in the battery compartment and return both.
- 【3 Levels Adjustable DPI】This travel USB mouse offers 3 adjustable DPI settings (800, 1200, 1600), allowing you to customize sensitivity for precise design work. Effortlessly switch to match your task and elevate your productivity. 📌 Please remove the film at the bottom of the mouse before use.
- 【Effortless Browsing】Equipped with forward and backward buttons, this computer mice streamlines your workflow, making it easy to navigate through web pages and files with a simple click. 📌Side button does not work on Mac.
- 【Visible Indicator Light】 The pc mouse features a visual indicator for DPI levels and low battery alerts. The red light flashes once for 800 DPI, twice for 1200 DPI, and three times for 1600 DPI. When the battery level is below 10%, the light flashes red until the mouse is completely out of power.
- 【Click to Wake】With smart sleep mode, it saves power by standby after 10 inactive minutes, just 2-3 clicks to wake. This efficient design delivers 3x longer battery life than motion-wake mice. Engineered for durability, its buttons and scroll wheel are tested for 10 million clicks, ensuring long-term reliability and consistent performance.
Does worksheet protection always disable Delete in Name Manager?
No universal rule is established. Check protection and editing permissions as part of troubleshooting, but also verify the selection and item type.
Can I delete a name that refers to #REF!?
Usually, an error in the reference does not itself prevent deletion. Select the name in Name Manager and try Delete, after checking that it is no longer needed.
Will deleting a defined name break formulas?
It can. Formulas and features such as validation, charts, conditional formatting, PivotTables, macros, and print settings may depend on the name.
Do these 3 things before closing this tab:
1Clear out junk files and repair common Windows errors2Scan for outdated or missing drivers - takes under a minute3Repair Windows errors before they cause bigger problemsQuick Recap
Product prices and availability are accurate as of the date/time indicated and are subject to change. Any price and availability information displayed on Amazon at the time of purchase will apply.

