作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 VBA 在单元格中放置一个数字到小数点后两位,然后是单元格中括号中的文本,例如:
1.23 (text)
Cells(1, 1) = 1.23
Cells(1, 2) = Cells(1, 1) & " (text)"
1.2 (text) or 1 (text)
Cells(1, 2) = Round(Cells(1, 1), 2) & " (text)"
Cells(1, 1).NumberFormat = "0.00"
Cells(1, 2) = Cells(1, 1) & " (text)"
最佳答案
您可以使用 Format()
function :
Cells(1,2) = Format(Cells(1,1), "0.00") & "(text)"
0.00" (text)";-0.00" (other text);"0.00"
关于vba - Excel中的小数位问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32340411/
我是一名优秀的程序员,十分优秀!