Forum Replies Created

Viewing post 1 (of 2 total)

  • RE: Rounding Down query

    To either round or truncate to N decimal places, use the formula (or write a UDF)

    (10 ^ 0-N) * floor(<value> * 10 ^ N) to truncate or

    (10 ^ 0-N) *...

Viewing post 1 (of 2 total)