What is FIXED in Google Sheets?
The FIXED function in Google Sheets can be used to format a number as text with a fixed number of decimal places. The function can help users control how many digits appear after the decimal point. One can also specify whether commas are included to separate thousands. This function is very useful when one must display numeric results neatly. Such neatness and uniformity is especially important in reports on financial data, prices, or rounded values. This helps display the number without altering the actual numeric value used in calculations.
For example, there a list of product prices in cells B2:B3, and you want to display them with two decimal places and without commas. Enter the following formula =FIXED(B2, 2, TRUE) to display each value rounded to two decimal places without commas (TRUE). Drag thew formula to display the value in a formatted way for cell B3 as well. The FIXED function converts the numeric result into text format, meaning it will look clean and consistent in presentation but cannot be used for further arithmetic unless converted back to a number.

Key Takeaways
- The FIXED function in Google Sheets is used to format numbers as text with a specific number of decimal places and optional comma separators.
- The syntax of the function is as follows: Syntax: =FIXED(number, [decimals], [no_commas])
- It is useful for financial statements, reports, and dashboards where uniform numeric presentation is important.
- FIXED converts numbers into text, so formatted results cannot be used directly in calculations and must be wrapped with the VALUE function.
Syntax
The FIXED function in Google Sheets formula is:
=FIXED(number, [decimals], [no_commas])
The arguments:
- number: The numeric value you want to format.
- decimals (optional): Specifies how many digits to show after the decimal point. If omitted, it defaults to 2.
- no_commas (optional): A logical value (TRUE or FALSE).
- TRUE – Omits commas from the result.
- FALSE – Includes commas for thousands separators (default).
The FIXED function returns a text value that displays the number in a readable, formatted way. Usually, a smaller number of decimals makes the output look much neater for reports or dashboards.
How To Use FIXED Function in Google Sheets?
FIXED formats a number as text with a fixed number of decimals. Optionally, one can add comma separators. It is useful to have an uniform display in reports and things like price lists. However, note the result is text, and no calculations can be performed. Hence, one must wrap with VALUE to convert it to a number.
Entering FIXED Manually
To understand how to enter the function manually, let us consider the example of a vegetable vendor who wishes to display prices with two decimal places and no commas.
Step 1: Enter the prices in numbers in the sheet in cells A2:A5.

Step 2: Select the cell where you want the formatted result. We start at C2. Type the following formula:
=FIXED(B2, 2, TRUE)
The arguments are in the ordered specified in the syntax and separated by commas. Close the parenthesis. TRUE means commas should be entered.

Step 3: Press Enter. You get the formatted value as text.

Step 4: To apply the formula to the other prices, drag it till cell C5.

Using FIXED From the Google Sheets Menu
- Select the cell to display the result.
- Click Insert -> Function -> Text -> FIXED.
- Enter the number (or range cell), decimals, and choose whether to omit commas.
- Press OK.
Remember, to convert the text back to a numeric value, use =VALUE(FIXED(…)).
Examples
One can use FIXED in Google Sheets to display numeric data in a consistent, readable format. It is useful in business reports, accounting and financial sheets. It helps ensure that all numbers appear uniform, containing the same number of decimal places and proper commas. Let us look at some examples showcasing the same.
Example #1
In this example, consider a company’s HR department that is preparing a salary report. The fields include the monthly salaries of employees. However, the data appear with inconsistent decimal places. The HR manager wants all salary values to appear with exactly two decimal places and commas, to maintain consistency across the report.
Step 1: Enter the employee salary data in column B of a sheet.

Step 2: In the next column C, type the following formula to format the first salary value in cell B2.
=FIXED(B2, 2, FALSE)
FIXED in Google Sheets rounds the number in B2 to two decimals and adds commas in the formatted output.

Step 3: Press Enter, then drag the formula down to apply it to the rest of the data.

After applying the formula, all the salary figures appear neatly aligned with two decimal places, and commas, regardless of their original format.
By applying the FIXED function, the company ensures that all salary figures are standardized. This avoids confusion caused by uneven decimals and enhances readability.
Example #2 – Using FIXED with SUM Function
An accountant at a company is preparing a monthly revenue summary for two departments, the North Zone and South Zone. The revenues are in decimals and vary in length, but must be presented neatly in a report. The accountant wants to calculate the total revenue for both departments and format it with one decimal place and commas for easy readability.
Step 1: Enter the department revenues in cells B2 and B3 in a sheet.

Step 2: In cell C2, type the following formula to calculate and format the total:
=FIXED(SUM(B2:B3), 1, FALSE)

This formula first calculates the total of the two revenues using the SUM function, then formats the result with one decimal place and includes commas for thousands.
Step 3: Press Enter, and the final value appears as text, neatly formatted for reporting or presentation.

The FIXED function not only makes financial figures visually cleaner but also gives flexibility to adapt formatting as per the reporting context.
Example #3
A company has an inventory management spreadsheet for a few products. The raw data sometimes has inconsistent formatting, including decimal places and commas. They must create a column with a standardized label for each item that includes its name and the inventory count.
Step 1: We enter the details in a Google Sheet.

Step 2: To create the standardized label, enter the following formula in cell C2 for the first product.
=”INVENTORY: “&FIXED(B2, 0, TRUE)
- “INVENTORY: ” is the text string that provides the product label prefix.
- FIXED is the function that rounds the raw count.
- B2 is the cell reference containing the number to be formatted.
- 0 specifies that we need zero decimal places, converting the number to a whole number.
- TRUE suppresses the comma.

Step 3: After entering the formula for the first product, use the fill handle to apply the formula to the rest of the column.

The result is a standardized, properly formatted inventory label for each product. The FIXED function ensures that all the numbers in the labels follow the exact same format.
Important Things To Note
- The FIXED function in Google Sheets converts a number into text, so while it looks like a number, it can’t be used directly in arithmetic calculations unless wrapped with the VALUE() function.
- The third argument helps users control whether to include thousand separators or commas. TRUE removes commas, while FALSE includes them.
- If one needs numbers to display with a consistent number of decimals across a report, FIXED ensures a uniform format without changing the actual value.
- Because the output is text, do not use them in formulas like SUM or AVERAGE.
- FIXED can be combined with functions such as SUM, ROUND, or VALUE to create clean, dynamic reports that both calculate and format data properly.
Frequently Asked Questions (FAQs)
While the Format → Number option changes how numbers appear, it does not alter the value type. However, the FIXED function changes the output itself into formatted text. Thus, the format is controlled using FIXED without any calculations involved, ideal for generating formatted outputs in reports or exports.
Some of the errors which occur due to the incorrect usage of FIXED include:
1. #VALUE! error: Occurs if the input is text or an invalid reference instead of a number.
2. Incorrect rounding: Happens if too few or too many decimal places are specified.
3. Formula errors: Since the output of FIXED is text, trying to use it in calculations.
To avoid any such issues, use VALUE(FIXED(A2,2,TRUE)) if the numeric use is required later.
Use FIXED when creating financial reports, salary sheets and invoices for clean, human-readable numbers. It’s particularly useful when exporting data to documents or PDFs for clients, ensuring professional and uniform presentation across all figures.
Download Template
This article must help understand the FIXED Function in Google Sheets, with its formula and examples. We can download the template here to use it instantly.
Recommended Articles
Guide to What Is FIXED Function In Google Sheets. We explain how to use the FIXED Function In Google Sheets with examples and points to remember. You can learn more from the following articles. –

Leave a Reply