本文介绍了单元格格式化,显示2位小数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
实际的数字是69.30217,所以在我的单元格中,想像一下单元格A1,看起来像69.30。这是可以的。
与这个单元格,我正在做一些连接,所以如果我这样做:
&安培; E5&安培;
数字显示为69.30217。但是如果我这样做:
& ROUND(E5; 2)&
数字显示为69.3。
我可以做什么来显示这个零?显示69.30
解决方案
使用此
code>&安培; TEXT(E5; 0.00)及
I have one cell formatted as Number and with 2 decimal places.
The actual number is 69.30217 so in my cell, imagine cell A1, it appears like 69.30. This is OK.
With that cell, I'm making some concatenations so if I do something like this:
"&E5&"
The number appears as 69.30217. But if I do this:
"&ROUND(E5;2)&"
The number appears as 69.3.
What can I do to display that zero? What to show 69.30
解决方案
Use this
&TEXT(E5;"0.00")&
这篇关于单元格格式化,显示2位小数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!