Textbox with currency format

  • Thread starter Thread starter C. Thies
  • Start date Start date
C

C. Thies

Hi

I can't get my textbox to show me formatted numbers ( 1,000,000.75)
How can I do that?

Thanks

Christian
 
Private Sub StartValue_Change()
'format data
StartValue = Format(StartValue, "$###,##0")

End Sub
 
Thanks David! Works nice!

David Adamson said:
Private Sub StartValue_Change()
'format data
StartValue = Format(StartValue, "$###,##0")

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top