Hi Everyone,
I am getting a runtime error(runtime error 6 overflow) when selecting ALL cells in a worksheet.
This sheet has a pop up calendar referencing cell J3.
Debug shows the error in the second line of the code below.
Any idea why?
Thank you!
I am getting a runtime error(runtime error 6 overflow) when selecting ALL cells in a worksheet.
This sheet has a pop up calendar referencing cell J3.
Debug shows the error in the second line of the code below.
Any idea why?
Thank you!
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If (Target.Count = 1) Then
If Not Intersect(Target, Range("J3")) Is Nothing Then Calendar.Show
End If
End Sub