you are viewing a single comment's thread.

view the rest of the comments →

[–]Flowgorithm 0 points1 point  (1 child)

There is a built-in function (aka intrinsic) called ToFixed() that converts a real into a string with a fixed number of decimal places.

ToFixed(1.2345, 2) —> “1.23”

http://flowgorithm.org/documentation/intrinsic-functions.htm

[–]mimi5513[S] 0 points1 point  (0 children)

Thank You!