R
rbielaws
Essentially, I want to format/display X number of significant digits.
For example 2 significant digits:
0.003412 -> 0.0034
341200 -> 340000
0.001 -> 0.0010
1 -> 1.0
10 -> 10
I spotted a discussion on this topic dated in '98 but it only does part
of what I want.
Being 8 years old, is there now a better way to do this part?
=ROUND(val_2b_rounded, significant_digits - 1 -
INT(LOG(val_2b_rounded)))
There doesn't seem to be a way to keep significant trailing zeros if
they are on the right of the decimal point.
If I stuck writing VB code that must be run every time an given cell
changes value, is there an easy way to kick off such a format update
function automatically?
For example 2 significant digits:
0.003412 -> 0.0034
341200 -> 340000
0.001 -> 0.0010
1 -> 1.0
10 -> 10
I spotted a discussion on this topic dated in '98 but it only does part
of what I want.
Being 8 years old, is there now a better way to do this part?
=ROUND(val_2b_rounded, significant_digits - 1 -
INT(LOG(val_2b_rounded)))
There doesn't seem to be a way to keep significant trailing zeros if
they are on the right of the decimal point.
If I stuck writing VB code that must be run every time an given cell
changes value, is there an easy way to kick off such a format update
function automatically?