Hi all,
I'm looking for help on a "Worksheet_SelectionChange(byVal Target As Range)"
What i think i want to do is something along the lines of
If intersect "G30,P30" then
Module4.opencalendar
Else if interesct "Z30,AI30" Then
Module5.opentime
Now naturally that doesn't work but it's something like that. 4 cells on same worksheet producing 2 different userforms.
I'm completely open to suggestions and ideas. i already have the .opencalendar working by itself as:
Help! Thanks,
HK
I'm looking for help on a "Worksheet_SelectionChange(byVal Target As Range)"
What i think i want to do is something along the lines of
If intersect "G30,P30" then
Module4.opencalendar
Else if interesct "Z30,AI30" Then
Module5.opentime
Now naturally that doesn't work but it's something like that. 4 cells on same worksheet producing 2 different userforms.
I'm completely open to suggestions and ideas. i already have the .opencalendar working by itself as:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("G30,P30")) Is Nothing Then
Module4.OpenCalendar
End If
End Sub
Help! Thanks,
HK