Rounding the numeric variable (declared as double) up to n digits
Rounding the numeric variable (declared as double) up to n digits
(OP)
I got problem in rounding the number declared as double in vb. I am using access database.
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
Rounding the numeric variable (declared as double) up to n digits
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Rounding the numeric variable (declared as double) up to n digits
dblNumber = Format(dblIn,
RE: Rounding the numeric variable (declared as double) up to n digits
Public Function RoundToFirst(X As Single)
RoundToFirst = Int(X / 10 ^ Int(Log(X) / Log(10))) * 10 ^ Int(Log(X) / Log(10))
End Function
Public Function RoundToSecond(X As Single)
RoundToSecond = Int(X / 10 ^ (Int(Log(X) / Log(10)) - 1)) * 10 ^ (Int(Log(X) / Log(10)) - 1)
End Function
Public Function RoundToThird(X As Single)
RoundToThird = Int(X / 10 ^ (Int(Log(X) / Log(10)) - 2)) * 10 ^ (Int(Log(X) / Log(10)) - 2)
End Function
Public Function RoundToFourth(X As Single)
RoundToFourth = Int(X / 10 ^ (Int(Log(X) / Log(10)) - 3)) * 10 ^ (Int(Log(X) / Log(10)) - 3)
End Function
Public Function RoundToDigit(X As Single, SignificantDigits As Integer)
RoundToDigit = Int(X / 10 ^ (Int(Log(X) / Log(10)) - (SignificantDigits - 1))) * 10 ^ (Int(Log(X) / Log(10)) - (SignificantDigits - 1))
End Function
RE: Rounding the numeric variable (declared as double) up to n digits
dim Mask as string
Mask = "000000000000000000."
Mask = Mask & Left(Mask, 1, Places)
RoundNumber = cdbl(Val(Format(NumberToRound,Mask)))
exit function