Function FloatToCurr shows values in scientific notation

  • Hello,

    I noticed strange behaviours using function FloatToCurr, to format values.

    First of all, when the number is greater than one million, the result is in scientific notation.
    For example, FloatToCurr(1654321) results in 1.65432E6

    Besides, when the value is over 100,000 it rounds to unit
    (FloatToCurr(654321.98 -> 654,322.00))
    and when the value is over 10,000 it rounds to the first decimal digit
    (FloattoCurr(54321.34 -> 54,321.30))

    It seems the function can hold just upto 6 digits...

    I'm using WPTools V.4.11d (evaluation)

    Regards