Hello,
I'm trying to convert a numeric value to a string, but I don't want it to round up the decimal point. Is there a way to do this?
NumValue = 0.1275
I need the string to be "0.12"
If I use str(NumValue,4,2) the value is rounded to " 0.13". Maybe there is a way to truncate the string...