Originally posted by rjlohan
You could do that with mine too...
run this:
VB Code:
  1. Dim num As Double
  2.  
  3.   num = 12.4242
  4.   MsgBox CDbl(Left(CStr(num), 4))

If he only wants two digits after the decimal, you're code will only work if the number before the decimal is no higher than 9.