Hi,
I need the help for this code. I want the additional code for this file without the press close button mean like an mouseover then select date.
I want only when the mouse move on the range automatic show or appearing the calendar form without double click. Then when the mouse move another cell not in the range the calendar form not display or disappearing.
here the code.
I need the help for this code. I want the additional code for this file without the press close button mean like an mouseover then select date.
I want only when the mouse move on the range automatic show or appearing the calendar form without double click. Then when the mouse move another cell not in the range the calendar form not display or disappearing.
here the code.
VBA Code:
Private Sub worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("A1", "C1", "G1")) Is Nothing Then Calendar.Show
End Sub