Sub Sample() Dim a As Double '倍精度浮動小数点数型 a = 123.456789 MsgBox a * 2 '246.913578を返します MsgBox CCur(a * 2) '246.9136を返します End Sub