VB Helper: HowTo: Round a value to a specified number of digits
Multiply the value by a power of ten, round to an integer using CInt, and then divide by the power of ten. ' Round value with this many digits. Private Function RoundOff(ByVal value As Double, ByVal _ digits As Integer) As Double Dim shift As Double ......