[]
This function rounds a number to the specified number of decimal places, formats the number in decimal format using a period and commas (if so specified), and returns the result as text.
FIXED(num, [digits], [notcomma])
This function has these arguments:
Argument | Description |
|---|---|
num | [Required] Number to round and convert to text |
digits | [Optional] Number of decimal places; if omitted, uses two places |
notcomma | [Optional] Logical value whether not to use commas; if omitted or FALSE, returns with commas |
FIXED(B3)
FIXED(R3C2,2,FALSE)
FIXED(4.2365,3)