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 November 14, 2020)
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

Moving Rows and Columns with the Mouse

Like to use the mouse to help you with your document editing? You can move table rows and column with the mouse by using ...

Discover More

Formatting Text Files with VBA

Got a bunch of text that you've imported from a text file? Need to make it look better? You can take a stab at it with ...

Discover More

Sorting for a Walking Tour

Want to sort addresses by even and odd numbers? By using a formula and doing a little sorting, Excel can return the ...

Discover More

Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!

More ExcelTips (ribbon)

Rounding to the Nearest $50

When preparing financial reports, it may make your data easier to understand if you round it to the nearest multiple, ...

Discover More

Rounding Numbers

The primary method of rounding values is to use the ROUND function in your formulas. Here's an introduction to this ...

Discover More

Rounding to Even and Odd Values

Want to round values so they are always even or odd? You can do it quickly and easily by using the EVEN and ODD worksheet ...

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 8 - 5?

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.