AI Assistant
Help Center AI Assistant is now available
Got questions about Lark? Use our AI chat to find the answers.
00:00
Click and hold to drag
Got It
Try Now

FIXED function for Sheets

1 min read
I. Intro
The FIXED function can be used to specify the number of decimal places to show for the specified number.
To use this function, enter =FIXED in a cell, or click Menu > Data > Formulas > Text > FIXED in the toolbar. Enter the arguments and press Enter.
II. About the function
  • Formula: =FIXED(number, [number of places], [suppress_separator])
  • Arguments:
  • number (required): The number for which you want to format.
  • number of places (optional): The number of decimal places you would like to show in the results. When omitted, two decimal places will be used.
  • suppress_separator (optional): Sets whether to use thousands separators. If this value is 0, FALSE, or is omitted, thousands separators will be used. If this value is not blank (including 1, TRUE, or any non-blank value), thousands separators will not be used (For example, 1,000 would be expressed as 1000).
  • Examples
Formula
Result
Description
=FIXED("1234",3,1)
1234.000
3 decimal places; no thousands separators
=FIXED("1234",3,0)
1,234.000
3 decimal places; thousands separators are used
=FIXED("1234",1,FALSE)
1,234.0
1 decimal place; thousands separators are used
=FIXED("1234",1,TRUE)
1234.0
1 decimal place; no thousand separators
Written by: Lark Help Center
Updated on 2023-05-25
How satisfied are you with this content?
Thank you for your feedback!
Need more help? Please contact Support.
0
rangeDom