My data set is coming as
54834
-32509
1
And I need it to read
548.34
-325.09
1.00
Solved! Go to Solution.
Here's an expression that can be used in a Formula tool to string-edit the input to achieve the desired result as a string:
Left(PadRight(tostring([Input]),3,'0'),
Length(PadRight(tostring([Input]),3,'0'))-2)
+"."+
Right(PadRight(tostring([Input]),3,'0'),2)
If you'd like to output this as a Fixed Decimal field, the attached example shows how you can add a "tonumber(' function and format the field accordingly.
That worked perfectly!
Thanks so much!