Cell format and User form question

P

Peter

Hi,

Another question about my spreadsheet and it associated user forms I'm
afraid!

My user forms have a text box that transfers its contents in the form
123 into a cell in a column that is formatted "ABC"# - unfortunately
when it writes to the cell it ignores the formatting and enters the
data as it was entered in the text box. If I go to the spreadsheet,
highlight the cell click in the formula bar and then hit return, the
data is formatted as per the format of the cell. I obviously need to
add an instruction to the command button - but what is it!

--
Cheers

Peter

Remove the INVALID to reply
 
T

Tom Ogilvy

Sub Textbox1_Change()
ActiveCell.Value = cDbl(Textbox1.Text)
End sub

rather than using controlsource
 

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

Top