I am trying to get a date to auto populate with the current date in my user form. I am struggling to get this correct any help would be appreciated.
Code:
Private Sub TransactionDate_Change()
Dim MyDate As String
MyDate = Format(Now, "mm/dd/yyyy")
MyDate = Now
End Sub