G Guest Oct 31, 2007 #1 How do I convert a number saved as a string to a numeric datatype so I can perform a calculation?
F fredg Oct 31, 2007 #2 How do I convert a number saved as a string to a numeric datatype so I can perform a calculation? Click to expand... Dim StrValue as String StrValue = "4567.89" [SomeControl] =Val(StrValue) returns 4567.89 as a Number value
How do I convert a number saved as a string to a numeric datatype so I can perform a calculation? Click to expand... Dim StrValue as String StrValue = "4567.89" [SomeControl] =Val(StrValue) returns 4567.89 as a Number value