Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I was wondering if there is some sort of command to hide the ABCDE and 12345etc... Robert |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Sub CanYouSeeThem() If TypeName(Selection) = "Range" Then ActiveWindow.DisplayHeadings = Not ActiveWindow.DisplayHeadings End If End Sub -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware "Robert" wrote in message Hello, I was wondering if there is some sort of command to hide the ABCDE and 12345etc... Robert |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a lot. Works perfect.
Ronert On 24 jun, 20:08, "Jim Cone" wrote: Sub CanYouSeeThem() If TypeName(Selection) = "Range" Then ActiveWindow.DisplayHeadings = Not ActiveWindow.DisplayHeadings End If End Sub -- Jim Cone San Francisco, USAhttp://www.realezsites.com/bus/primitivesoftware "Robert" wrote in message Hello, I was wondering if there is some sort of command to hide the ABCDE and 12345etc... Robert |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() ActiveWindow.DisplayHeadings = False 'Off ActiveWindow.DisplayHeadings = True 'On "Robert" wrote: Hello, I was wondering if there is some sort of command to hide the ABCDE and 12345etc... Robert |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro code to hide rows and not calculate hidden rows | Excel Discussion (Misc queries) | |||
Enabling option „Format rows“ to hide/unhide rows using VBA-code? | Excel Discussion (Misc queries) | |||
vb code to hide columns | Excel Discussion (Misc queries) | |||
Hide columns code | Excel Discussion (Misc queries) | |||
Modification in the CODE to HIDE rows and columns that start with ZERO (code given) | Excel Programming |