View Single Post
  #3   Report Post  
Don Guillett
 
Posts: n/a
Default

Why? All 3 did the same thing and Bob's was the most efficient.

--
Don Guillett
SalesAid Software

"Andy" wrote in message
...
worked well. chose this one.

"tjtjjtjt" wrote:

Here's a basic macro that will do it:

Sub HideColD()
Columns("D:D").Select
If Selection.EntireColumn.Hidden = False Then
Selection.EntireColumn.Hidden = True
Else
Selection.EntireColumn.Hidden = False
End If
Range("D1").Select
End Sub


tj

"Andy" wrote:

Hi

I am trying to write a Macro to Toggle Show/Hide column D

Anybody able to help?

with thanks...Andy