I am typing in my textbox in excel following: 2017-01-09 the result posted in the cell is 42744
What am I doing wrong here even do I am specifically saying that my cell should be formatted as a 'general' type
Private Sub TextBox2_LostFocus()
Range("F3").Value = TextBox2.Value
Range("F3").NumberFormat = "General"
Range("F3").Select
Application.SendKeys ("~")
Range("F3").NumberFormat = "General"
End Sub