how do i show 3 significant figures

P

peter

i need to show numbers to 3 significant figures. in one column, the numbers
should show as 5.36, 7.56, 20.8, 47.6, 171, 291, 1070. all to 3 significant
figures, but to different numbers of decimal places. thanks.
 
R

Ron Rosenfeld

i need to show numbers to 3 significant figures. in one column, the numbers
should show as 5.36, 7.56, 20.8, 47.6, 171, 291, 1070. all to 3 significant
figures, but to different numbers of decimal places. thanks.

You can use this formula in a "helper column":

=--TEXT(A1,"."&REPT("0",3)&"E+000")

A possible disadvantage is that if the result has a trailing zero to the right
of the decimal point, it will not be displayed.

If that might be an issue, then a VBA solution may be required to return the
result as a text string.
--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top