I have a piece of code that is showing a userform if cell F6 is double clicked. Here is the code:
I just want to change this to show the userform if the cell is clicked at all instead of double clicked. I would greatly appreciate any help with this. Thanks for the looks!
Hank
Code:
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Address = "$F$6" Then
Cancel = True
EnterDate.Show
End If
End Sub
I just want to change this to show the userform if the cell is clicked at all instead of double clicked. I would greatly appreciate any help with this. Thanks for the looks!
Hank