Private Sub Text1_Change()
Text1 = Format(Text1, "#,###")
Text1.SelStart = Len(Text1.Text)
End Sub
This code formats the textbox value to include a comma for every 3 digits to the left. Problem is, it doesn't allow to type decimals like 3,000,000.50
What can I do?