在VBA中可以利用下面的代码来控制当前单元格“显示”的小数位数:
Selection.NumberFormatLocal = "0.00_ "'这里显示为2位小数
关于此处的numberformatlocal属性:
应用于 CellFormat、DataLabel、DataLabels、Range 和 TickLabels对象的 NumberFormatLocal属性。
以用户语言字符串返回或设置对象的格式代码。Variant 类型,可读写。
expression.NumberFormatLocal
expression 必需。该表达式返回上面的对象之一。
说明:
Format函数使用与 NumberFormat 和 NumberFormatLocal属性不同的格式代码字符串。