hello
I have 4 textboxes linked with 4 cells when I run the userform should show the number like this 1,200,300.00 in four textboxes
this what i got but not work
any suggestion,please ?
I have 4 textboxes linked with 4 cells when I run the userform should show the number like this 1,200,300.00 in four textboxes
this what i got but not work
VBA Code:
Private Sub UserForm_Activate()
TextBox1.value = Format(TextBox1.value, "#,##0.00")
TextBox2.value = Format(TextBox2.value, "#,##0.00")
TextBox3.value = Format(TextBox3.value, "#,##0.00")
TextBox4.value= Format(TextBox4.value, "#,##0.00")
End Sub
Last edited: