Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Thoughts and Ideas on Significant Digits in Excel.
Written by Allen Wyatt (last updated January 4, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003
Steve Aprahamian contributed some great observations and thoughts on the topic of significant digits and working in Excel. Steve works with numbers and their statistical variability as a large part of his profession. (He is a Ph.D. chemist.) His thoughts are presented in this tip and should be helpful to many readers.
It does not matter how many significant figures you use in displaying values in Excel, as the program will always use 15 significant digits in its calculation. You can ROUND the values (changing the displayed decimal places does not change the value used in the calculation, ROUND does), but the accepted practice has always been to include all the figures you have for all your calculations and ROUND at the end to the appropriate number of significant digits. This actually improves the precision of your calculations.
The easiest thing to do is to ignore significant digits and just display all final calculations with two or three decimal places. Fewer does not provide enough information, while more gives people the impression that you are anal-retentive, pedantic, or ignorant in the meaning of significant figures! (I once had a college instructor who deducted points if you did not use significant digits. He hated "calculator diarrhea." If the problem, as stated, resulted in an implied 1.23 result, answering 1.2345678901—the result displayed by the calculator—was considered incorrect and points were deducted.)
If you want to keep track of significant digits, the easiest way is to keep a value of significant digits for each number you have. With a value and the number of significant digits, Excel can calculate the number of decimal places and you can display your final value with this information. Significant digits and the number of decimal places are not independent; the decimal places come from the significant digits and the value.
Given a value (X) and the number of significant digits (SD), the number of decimal places is given by the following formula:
=SD - INT(LOG10(X)) - 1
You can then convert the appropriate value to text by using:
=FIXED(X, SD - INT(LOG10(X)) - 1)
ROUND will not work, since you must also change the number of fixed decimal places in the display. The VALUE function can be used with the "FIXED text" to convert the text to a numeric value for calculations.
Keeping track of significant digits is probably going to be a real pain, however. It is important to be aware of the following of a couple of things. First, when you multiply or divide you must pay attention to significant digits. The number of significant digits in the result is the same as the minimum number of significant digits for each of the operands. For instance, consider the following equation:
3.1 * 3.45678
The answer to this equation would only have two significant digits, because one operand has two and the other has six, and the result will have the minimum of those two. Thus, the answer to the equation would be 11, which has two significant digits. Note, as well, that even though both operands had at least one decimal place, the result does not, as that would give the result too many significant digits. Decimal places are not considered in the result.
Second, when you add or subtract, you must pay attention to decimal places, not to significant digits. The number of decimal places in the result is the same as the minimum number of decimal places for each of the operands. For instance, consider the following equation:
23.1 + 103.789120
The answer to this equation would have one decimal place, because one operand has one decimal place and the other has six, and the result will have the minimum of those two. Thus, the answer to the equation would be 127.9, which has a single decimal place. The number of significant digits in the operands is not considered in the case of addition and subtraction.
It can be noted that an even better way to accomplish the control of significance is to use propagation of error techniques. You can keep track of the variability (variance, standard deviation, or some other determination of "error") and actually determine the variability of the final result. You would report a value like 1.23 +/- 0.05 or 1,234 +/- 45. This method gives a better determination of what the actual significant digits are. This approach, of course, is best left to a separate discussion.
Without an explicit variability, significant digits, for the most part, only imply the variability in the value. The implication is that the number is +/- one-half of the last significant digit. For instance, a result of 1.23 suggests (with no other information) an actual value between 1.225 and 1.235, while a result of 12 suggests an actual between 11.5 and 12.5.
Some additional comments on significant digits:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (1983) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Thoughts and Ideas on Significant Digits in Excel.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Understanding how Excel sets the taskbars upon opening.
Discover MoreYou may want to have all your Excel workbooks stored in a specific location on your system. Here's how to set the default ...
Discover MoreWhat is a list of data, and how do you create one? Here are some guidelines you may find helpful.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2021-01-24 00:36:57
miha
Is it possible to manage Significant digits in all cells by default of file?
so all digits after 5th ,for example, became non Significant for calculation and simply erased after first entering in cell?
and still be numbers and not by converting to text
2019-11-12 13:00:57
Gaurav
Hi Allen,
Its wonderful formula. Thank you for sharing it. It can save a lot of my time. I have just one problem, how to remove 1000 separator from the output values. e.g. I have to change 2225554.33 to 3 significant digits. Your formula give me 2,230,000. How to remove 1000 separator in the excel?
Thank you,
Gaurav
2019-10-25 06:34:00
Willy Vanhaelen
@Peter McNab
4.6 is the correct answer for your formula:
ROUND(1.65,1)=1.7
ROUND(1.75,1)=1.8
1.7+1.8+1.1=4.6
But when you write the formula this way:
=ROUND(1.65+1.75,1)+1.1
1.65+1.75=3.4
ROUND(3.4,1)=3.4
3.4+1.1=4.5
It depends on what you want.
2019-10-24 02:43:35
Peter McNab
Also, if you use round() you may get the wrong answer:
Round(1.65,1)+round(1.75,1)+1.1 should be 4.5 not 4.6
2019-10-22 05:34:45
Henri
something tells me that 23.1 + 103.789120 =126.9 instead of 127.9 as mentioned...
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments