FIXED
The FIXED
function in Google Sheets is a powerful tool to format a number with a fixed number of decimal places. It is used for displaying numbers in a specific format, especially when dealing with financial data or presenting rounded values. Take a deep dive into our comprehensive guide to master its application.
Function Syntax and Parameters
Syntax: FIXED(number, [number_of_places], [suppress_separator])
Parameters:
number
: The number you want to format.number_of_places
: [Optional] The number of decimal places to display. If omitted, it defaults to 2.suppress_separator
: [Optional] A boolean value that determines whether to display a thousands separator. IfTRUE
, it suppresses the separator. IfFALSE
or omitted, it displays the separator.
Step-by-Step Tutorial
-
Using
FIXED
with default settings:- Example:
=FIXED(1234.5678)
- Result:
1,234.57
- Example:
-
Using
FIXED
with a specific number of decimal places:- Example:
=FIXED(1234.5678, 3)
- Result:
1,234.568
- Example:
-
Using
FIXED
without a thousands separator:- Example:
=FIXED(1234.5678, 2, TRUE)
- Result:
1234.57
- Example:
Use Cases and Scenarios
- Financial Reports: Format monetary values for precise presentation.
- Scientific Data: Display experimental measurements with fixed decimal places.
- Percentage Calculations: Round percentages with a specific number of decimal places.
Related Functions
ROUND
: Round a number to a specified number of decimal places.CEILING
: Round a number up to the nearest integer or multiple of significance.FLOOR
: Round a number down to the nearest integer or multiple of significance.