How to get excel to display a certain number of significant figures?

前端 未结 10 1333
太阳男子
太阳男子 2021-01-05 04:10

I am using excel and i want to display a value to a certain number of significant figures.

I tried using the following equation

=ROUND(value,sigfigs-         


        
10条回答
  •  情歌与酒
    2021-01-05 04:21

    You could try

    =ROUND(value,sigfigs-(1+INT(LOG10(ABS(value)))))
    

    value :: The number you wish to round.

    sigfigs :: The number of significant figures you want to round to.

提交回复
热议问题