Hi
I am new to this and need some expert help, though to most of you this will be straight forward!
I've used the code I found below which works perfectly for a range of columns, except I need to adapt it to hide alternate columns in my sheet. For example I want to hide G, I, K and so on until BU.
Sub HideStuff()
With Columns("G:M")
If .Hidden Then
.Hidden = False
Else
.Hidden = True
End If
End With
End Sub
Thank you in advance. H
Bookmarks