View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Currency in Userform

Al,

If you are wanting to format user input, you need to do it at the end, or as
it is input. The formatting is done with

Textbox1.Text = Format(Textbox1.Text,"$#,##0.00")

That shows the currency and the number of dec places.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Fixital" wrote in message
...
Hello,

Office 2000 on Windows NT.

Is there any way to display the "$" in a userform? I have it on the

worksheet,
but would like to display it in the textbox on the userform.

Also, I have used the "Round" on the worksheet to display only 2 decimal
places in the same textbox. Is there another way to do this?

Appreciatively, Al