Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Everybody
How do you create Hidden Names for ranges? I would like to name a range of cells and not have the name appear in the drop down Name box, but be able to refer to it in VBA code. I am using Excel 2002 Many thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi PraxisPete,
Try something like: '============= Public Sub Tester03() With ActiveWorkbook .Names.Add "Test", _ RefersTo:=.Sheets("Sheet1").Range("A1"), _ Visible:=False End With End Sub '<<============= --- Regards, Norman "PraxisPete" wrote in message ... Hi Everybody How do you create Hidden Names for ranges? I would like to name a range of cells and not have the name appear in the drop down Name box, but be able to refer to it in VBA code. I am using Excel 2002 Many thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You have to do it by code:
Names("ABC").Visible = False or with a utility: http://www.jkp-ads.com/OfficeMarketPlaceNM-EN.htm -- Jim "PraxisPete" wrote in message ... | Hi Everybody | | How do you create Hidden Names for ranges? I would like to name a range of | cells and not have the name appear in the drop down Name box, but be able to | refer to it in VBA code. | | I am using Excel 2002 | | Many thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you for your replies, problem solved.
"Jim Rech" wrote: You have to do it by code: Names("ABC").Visible = False or with a utility: http://www.jkp-ads.com/OfficeMarketPlaceNM-EN.htm -- Jim "PraxisPete" wrote in message ... | Hi Everybody | | How do you create Hidden Names for ranges? I would like to name a range of | cells and not have the name appear in the drop down Name box, but be able to | refer to it in VBA code. | | I am using Excel 2002 | | Many thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|