Private Sub UserForm_Activate()
'Legt das Format für TextBox16 auf 2 Stellen nach dem Komma fest.
Me.TextBox16.Text = Format("#,##0.00")
End Sub
Private Sub CommandButton1_Click()
Me.TextBox1 = Round(Sheets(1).[C3], 2)
End Sub
Ergebnis der Textbox= 185,24
TextBox16 = Format(ActiveCell.Value, "0.00")