wkalo,
You need to strip away the % sign and convert the result to a number:
eg
Sub myResult()
Dim i As Integer, x As Integer, y As String
'y is value entered in the textbox ie. 1.00%
y = TextBox1.Value
'i is the everything left of the % sign, decalred above as an integer
i = Left(y, Len(y) - 1)
x = TextBox2.Value
msgbox i + x
End Sub
Hope that helps
Weasel


Reply With Quote
Bookmarks