The code below works perfectly. However, I need to merge the cells in column D with the cells in column E. When I do this the code does not work. I have tried to reference the cells in both columns but have had no luck. What do I need to do?
Here is my code
Here is my code
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Select Case Target.Address
Case "$D$4", "$D$9", "$D$11", "$D$12"
Call OpenCalendar
End Select
End Sub