This function should do the trick. Just call it with the number you wish to round down and the number of values after the decimal place you wish.
Private Function RoundDown(dblNum As Double, intPlacesAfterDecimal As Integer) As Double
RoundDown = CDbl(Left(CStr(dblNum), intPlacesAfterDecimal + 2))
End Function
Hope this helps,
Keith