Macro for Hidding a Column??
Posted by Marianne on January 05, 2001 7:14 PM
I have the following code in a Macro that is supposed to hide column C. Instead, it hides Columns A -- I. Can anyone tell me where I went wrong?
Columns("C:C").Select
Range("C2").Activate
Selection.EntireColumn.Hidden = True
Range("A9").Select
'I want to be on A9 after Column C is hidden.
Thanks,
Marianne