Colleen45
Active Member
- Joined
- Jul 22, 2007
- Messages
- 495
I have a problem getting this code to work
When ever one of the two names are selected the macro is supposed to run
code
Private Sub Worksheet_Change1(ByVal Target As Range)
If Target.Address(False, False) = "H6" Then
Select Case Target.Value
Case "Camps Bay", "Tokai": Call unhide_rows
End Select
End If
End Sub
/code
When ever one of the two names are selected the macro is supposed to run
code
Private Sub Worksheet_Change1(ByVal Target As Range)
If Target.Address(False, False) = "H6" Then
Select Case Target.Value
Case "Camps Bay", "Tokai": Call unhide_rows
End Select
End If
End Sub
/code