Private Sub TextBox1_Change()
With UserForm1
TextBox1.Value = Format(Date)
End With
Worksheets("Test").Range("P2").Value = Me.TextBox1
End Sub
Private Sub UserForm_Initialize()
TextBox1 = Format(Date)
End Sub
TextBox1.Value ="geänderter Inhalt"
Private Sub TextBox1_Change()
With UserForm1
TextBox1.Value = Format(Date)
End With
Worksheets("Test").Range("P2").Value = Me.TextBox1
End Sub
Private Sub UserForm_Initialize()
TextBox1 = Format(Date)
End Sub
TextBox1.Value ="geänderter Inhalt"