Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim n As Double, m As Variant
n = 1.234
MsgBox m & ":" & VarType(m)
m = CDec(n)
MsgBox m & ":" & VarType(m)
Dim m As Variant
m = CDec(10000 / 1000)
MsgBox m
MsgBox Format(m, "0.000")