Hi,
I created a user form with a Microsoft Date Picker control. My problem is that when I run the form and select a date from the picker control, it returns a time to the spreadsheet. I cannot seem to get it to transfer the date into the cell? What am I missing???
Here is my tester code…
Private Sub CommandButton1_Click()
Unload Me
Range(“A1”).Value = Me.DTPicker1.Value
End Sub