Syntax
| Parameter | Description |
|---|---|
| number | Parameter of the FIXED function. |
| [decimals] | (Optional.) Parameter of the FIXED function. |
| [no_commas] | (Optional.) Parameter of the FIXED function. |
Examples
Format price display
=FIXED(1234.567, 2)
No commas
=FIXED(1234567.89, 2, TRUE)
Round to whole number
="Total: " & FIXED(A1, 0) & " units"
Common Errors
Occurs if the number or decimals argument is non-numeric text.
Can occur if the decimals argument is excessively large or negative beyond the number's digit count.
Tips
FIXED returns a text string. You cannot do math with the result. If you need a rounded number, use ROUND instead.
=FIXED(1234, -2) returns "1,200" — negative decimals round to the left of the decimal point, like ROUND.
FIXED is ideal for concatenation: ="Revenue: $" & FIXED(B2, 2) produces clean formatted output like "Revenue: $45,230.00".
Try FIXED in Viztab
Import your data and use FIXED with 370+ other formulas. No signup required.
Open Viztab