Hi
I have a working code to make a calendar pop up when ever someone selects a specific cell. However I would like to make it work for whenever a cell in a range is selected ("G2:G3000 "I2:I3000" "J2:J3000 "L2:L3000") or anywhere in column G, I, J, and L.
The code I have at the moment will only work for cell L2
It reads:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Select Case Target.Address
Case "$L$2"
Call OpenCalendar
End Select
End Sub
Any help would be much appreciated.
Thanks
I have a working code to make a calendar pop up when ever someone selects a specific cell. However I would like to make it work for whenever a cell in a range is selected ("G2:G3000 "I2:I3000" "J2:J3000 "L2:L3000") or anywhere in column G, I, J, and L.
The code I have at the moment will only work for cell L2
It reads:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Select Case Target.Address
Case "$L$2"
Call OpenCalendar
End Select
End Sub
Any help would be much appreciated.
Thanks