Currency in text box

C

chimp

How can i get a text box to be displayed as currency instead of jus
numeric on a userform.

you will see from the attached picture that the recommended sellin
price which works from a vlookup displays the Currency £ symbol,

where as the text box which is a manual entry does not.

Please Help

And

+----------------------------------------------------------------
| Attachment filename: text box.gif
|Download attachment: http://www.excelforum.com/attachment.php?postid=365653
+----------------------------------------------------------------
 
H

Henry

Chimp,

Try
Private Sub TextBox1_AfterUpdate()
TextBox1.Text = "£" & TextBox1.Text
End Sub


HTH
Henry
 

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

Similar Threads


Top