StartingOut
Board Regular
- Joined
- Feb 1, 2011
- Messages
- 92
Hi, I have this code to call the calendar when a cell in column "A" is selected but I want it to call the calendar when a cell in column A or D is selected. Seams simple but I can't get it to work.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 1 or 4 Then
Call OpenCalendar
End If
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Column = 1 or 4 Then
Call OpenCalendar
End If