Phantom range name

Giordano Bruno

Well-known Member
Joined
Jan 7, 2007
Messages
1,352
I have an excel worksheet and if I combine two or more contiguous cells and give them a name, the name appears centered over the range with a border around the range. Above about 35% zoom, the image disappears. but reappears when the zoom is reduced again. The characters are of a size that occupies most of the range. It is not selectable and when I tried to create a mini sheet using xl2bb the resulting image doesn't display the name. If anyone has had this experience, I'd like to know if you found a way of preventing this unusual behaviour.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
The only way that I know is to make the name(s) invisible using vba. You could make individual names Invisible/Visible or all of them like this

VBA Code:
Sub Hide_Names()
  Dim Nm As Name
  
  For Each Nm In ThisWorkbook.Names
    Nm.Visible = False
  Next Nm
End Sub

Note too that if made invisible the names will also disappear from the Name Manager even though the Named Ranges themselves still exist.

BTW, below 40% zoom is when the names appear.
 
Upvote 0
This might be more useful - toggling them all off/on

VBA Code:
ub Hide_Names_v2()
  Dim Nm As Name
  
  For Each Nm In ThisWorkbook.Names
    Nm.Visible = Not Nm.Visible
  Next Nm
  Application.ScreenUpdating = True
End Sub
 
Upvote 0
Hi Peter,

You're even smarter than ChatGPT. Certainly smarter tham me as I'm using similar code to hide all names for when I distribute the model and yet I didn't think of that as a solution. I copied your code and, oddly, I was unable to step though it. I put a shape on the sheet and attached it to the code and when I clicked the shape, all of the rectangular borders disappeared along with the text. When I click it again, they all come back

My heartfelt thanks for the solution - sadly I can't stand you a beer.
 
Upvote 0

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top