Back to functions
Text2026-06-130 related articles

FIXED Function in Excel

Round a number, format it as text, and optionally suppress thousands separators.

Syntax

FIXED(number, [decimals], [no_commas])

Arguments

number

Required

The number you want to round and convert to text.

decimals

Optional

The number of decimal places to keep. If omitted, Excel uses 2.

no_commas

Optional

Use TRUE to omit commas from the returned text, or FALSE to keep them.

What it returns

Returns the rounded number as text.

What FIXED does

FIXED rounds a number to a chosen number of decimal places, formats it as text, and can optionally remove comma separators. It is useful when you need consistent text output rather than a numeric cell format.

Practical examples

Round to one decimal place

=FIXED(A2,1)

This returns a text version of the rounded number with one digit after the decimal point.

Remove comma separators from the text result

=FIXED(A3,-1,TRUE)

This rounds to the left of the decimal point and returns the result without commas.

Common mistakes and notes

FIXED returns text, not a number

That matters if you later try to use the result in math functions. Format the original cell instead if you only need a visual display change.

Negative decimals round to the left of the decimal point

For example, -1 rounds to tens, -2 rounds to hundreds, and so on.

Related functions

Official documentation