to_text_with_precision
converts any numeric data type to text format with precise decimal points.
Syntax
to_text_with_precision(value, precision)
Parameters
value
and precision
should both contain numerical values.
-
valuecan include any data in numerical format. -
precisionwill be a number, indicating what decimal place you’d like to round to.
Examples
to_text_with_precision(2.1234, 2)
= 2.12

