Converts a number into a text string with optional thousands commas and with a number of decimal places.
Syntax:
FIXED(number {, digits:Number {, no_commas:Number}})
Returns the text string given by converting number to text with thousands commas (unless suppressed with no_commas) and with digits decimal places.
If digits is omitted, the default number of decimal places is two.
Rounding is carried out according to the same formula as that used by the ROUND
function.
Example:
FIXED(123456.789, 2)
returns the text string "123,456.79"
.