hamistasty
Board Regular
- Joined
- May 17, 2011
- Messages
- 208
Using
I want to make it so that the merged cell range of H1:CH3 (which would be H1 right?) unhides columns A:AAA when it is selected/active. So far I have:
Not sure what I'm doing wrong.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Code:
If Target.Cells.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("H1")) Is Nothing Then
Columns("A:AAA").EntireColumn.Hidden = False
Else
End If
Not sure what I'm doing wrong.