Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Rounding to Two Significant Digits.

Rounding to Two Significant Digits

Written by Allen Wyatt (last updated October 3, 2024)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


6

Tammy needs to round values in a worksheet to two significant digits. For instance, if a cell contains 137, it should round to 140; if it contains 0.0005937 it should round to 0.00059; and if it contains 156735.32 it should round to 160000. She wonders if there is a simple formula to round any given number to only two significant digits.

Of course, it depends on what your definition of "simple" is. Fact of the matter, though, is that there are several different formulas you can use to get the desired result. Assuming that your original value is in cell A1, you can use any of the following representative formulas:

=ROUND(A1/(10^(INT(LOG10(ABS(A1)))+1)),2)*(10^(INT(LOG10(ABS(A1)))+1))
=ROUND(A1,-(INT(LOG(ABS(A1),10))+1)+2)
=FIXED(A1,1-INT(LOG10(ABS(A1))))
=ROUND(A1,1-INT(LOG(ABS(A1))))

These formulas will work with either positive or negative values just fine. The LOG (or LOG10) function is used to determine the number of digits either to the left or right of the decimal place before the first significant digit occurs. The INT of that function actually provides a number that is one less than the number of digits required, so that is why the value has 1 added to it. We can then round using that number of digits.

If you think that you may want to use a different number of significant digits than two, then you can use either of the following formulas:

=ROUND(A1,2-INT(LOG(ABS(A1)))-1)
=ROUND(A1,2-INT(LOG10(ABS(A1)))-1)
=FIXED(A1,2-INT(LOG10(ABS(A1)))-1)

All you need to do is change the 2 to reflect any number of significant digits you want. More information about significant digits in Excel can be found here:

https://excelribbon.tips.net/T012083

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (10397) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Rounding to Two Significant Digits.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Determining Word Versions of Documents

If you know where to look, you can figure out which version of Word was last used to work on a document. It takes some ...

Discover More

Footnotes for Tables

Word includes a powerful feature that allows you to add footnotes and endnotes to your document. What if you want them at ...

Discover More

Freezing Worksheet Tabs

If you have a lot of worksheets in a workbook, you may wonder if you can "freeze" the position of some of those worksheet ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (ribbon)

Rounding in Results

Rounding is a fact of life when it comes to using formulas in a worksheet. Sometimes that rounding can be a bit ...

Discover More

Using the MROUND Worksheet Function

If you want to round a value to some multiple of a whole number, you'll want to become familiar with the MROUND function. ...

Discover More

Rounding to the Nearest Half Dollar

When working with financial data, it's easy to round values to the nearest dollar. What if you want them rounded to the ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is nine minus 2?

2021-04-21 10:24:19

J. Woolley

@ALEXANDRE
For N significant digits you can format as Scientific with (N-1) decimal places. Use Home > Number on the Ribbon (or Ctrl+1).
With N=1, 0.003573267 is displayed as 3.6E-03, 140 as 1.4E+02, 367453.345 as 3.7E+05.


2021-04-20 20:33:40

ALEXANDRE CAVALCANTE

Good tip but unfortunately there is an error in the definition of significant figures. zeros to the right of a number are significant. Leading zeros are not significant and power of 10 is not significant. Therefore, as an example, the number 0.003573267 written with two signifiers would be 0.0036. The number 0.0230 has 3 significant. The number 140 (as in the example at the beginning of the text) has 3 signifiers. The right would be 14 x 10 ^ 1 or 1.4 x 10 ^ 2. The number 367453,345 with only 2 significant would be 38 x 10 ^ 4 or 3.8 x 10 ^ 5.

So, how do you represent values with 2 signifiers and the power of 10?


2020-11-15 06:32:00

Peter Atherton

=ROUND(A1,1-INT(LOG(ABS(A1)))) is the shortest formula, so that is the one I'd use.
The FIXED formula returns a text value so add a zero @ the end. =FIXED(A8,1-INT(LOG10(ABS(A8))))+0
Tony,
Copy and paste the formula into B1, and then paste B1 into whatever cell you want.


2020-11-15 06:09:53

Tony Degnen

Please disregard my previous comment, the formulae work perfectly in Excel. I didn't realise I was using an alternative spreadsheet program. Doh!


2020-11-14 20:02:51

Tony Degnen

Your tip on rounding to two significant digits produced only "err:508" when I tried it. This happened with all the alterrnative formulae you provided (e.g. =ROUND(A1/(10^(INT(LOG10(ABS(A1)))+1)),2)*(10^(INT(LOG10(ABS(A1)))+1)).
Am I doing something wrong?


2020-11-14 10:25:26

J. Woolley

Another way for N significant digits is to format as Scientific with (N-1) decimal places.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.