hello, i have a problem with my textboxes to display decimal numbers with just two (2) decimals no more,
i tried this code:
and it's not working good as you show in the attached screen caption
https://ibb.co/igUVP6
Thank you
i tried this code:
Code:
Private Sub TextBox75_Change()
If IsNumeric(TextBox75.Value) Then
TextBox75.Text = Format(TextBox75, "0.00")
End If
End Sub
and it's not working good as you show in the attached screen caption
https://ibb.co/igUVP6
Thank you