07-13-2011 09:06 AM
I am trying to convert a "numeric" local value to a string through the expression browser in order to supply a string arguement. I am currently looking through the expression browser options, but I can not find any type of Number "ToString()" function.
Solved! Go to Solution.
07-13-2011 09:22 AM
Hi,
Str() function
ie
locals.tostring = Str(locals.dec_value)
07-13-2011 09:22 AM
Hi you should try this:
Str(locals.MyNumeric)
Regards
07-13-2011 09:25 AM
Also you can pass as format string as well with this function. checkout the help for this function