I wish to convert floating point values to strings.
Here is example code:
Dim Str As String
Dim Flt As Float
Flt=10.2
Str=Flt
Msgbox(Str,"Str=")
I get Str=10.199999809265137.
I want Str=10.2.
What can I do to get the results I want without limiting needed precision?
Here is example code:
Dim Str As String
Dim Flt As Float
Flt=10.2
Str=Flt
Msgbox(Str,"Str=")
I get Str=10.199999809265137.
I want Str=10.2.
What can I do to get the results I want without limiting needed precision?