B bob Aug 8, 2003 #1 How is a string of numbers from a userform textbox converted to a numberic value?
T Tom Ogilvy Aug 8, 2003 #2 cdbl(Textbox1.Text) or if an integer clng(textbox1.text) or just set it to a variable declared to be the proper type Dim dblVal as double, lngVal as Long dblVal = textbox1.Text lngVal = Textbox2.Text
cdbl(Textbox1.Text) or if an integer clng(textbox1.text) or just set it to a variable declared to be the proper type Dim dblVal as double, lngVal as Long dblVal = textbox1.Text lngVal = Textbox2.Text