Hello All,
What would be the proper syntax for the following? The question is
commented out in the code.

Sub mySub()
Dim myDate As Date
myDate = InputBox("Please enter a date.")

' **Here is where I get a type mismatch error**
' How should I word this condition to apply to the "Date type"
' I defined at the start"
If myDate = "" then 'Type mismatch error!!!
MsgBox "You must enter a date! PLease retry."
Exit Sub
End If
' Run my proceedure here
End Sub

--
Thanks,

Patrick