Signifcant digits

D

Daniel Bonallack

I had a search as I was sure that this would have been answered, but didn't
really find what I needed.

How can I display 3,456 as 3,460 (so to 3 significant digits) without
changing the value of the cell (as would happen with the round function).

Thanks in advance.

Daniel
 
R

Ron Rosenfeld

I had a search as I was sure that this would have been answered, but didn't
really find what I needed.

How can I display 3,456 as 3,460 (so to 3 significant digits) without
changing the value of the cell (as would happen with the round function).

Thanks in advance.

Daniel

I do not believe that is possible.

How about scientific format: 0.00E+00 would be 3.46E+03

Another option would be to use the ROUND function for display, but use a
different column (which could be hidden) for performing your calculations.


--ron
 
D

Daniel Bonallack

Thanks Ron

Ron Rosenfeld said:
I do not believe that is possible.

How about scientific format: 0.00E+00 would be 3.46E+03

Another option would be to use the ROUND function for display, but use a
different column (which could be hidden) for performing your calculations.


--ron
 
Top