I am endeavouring to insert a date into a textbox on a userform, using the following code:
Private Sub tbDate_Change()
Me.tbDate.Value = Format(Me.tbDate.Value, "dd mmm yy")
End Sub
I initialized the testbox to reflect the current date; however, when I attempt to alter the date, a...