This could be one of your Kludgies! (LOL)
'
Code:
Public Function MyRound(varValue As Variant, intDecimalPlaces As Integer) MyRound = Int((varValue * intDecimalPlaces) + 0.5) / intDecimalPlaces End Function
Code:
'Round to 2 Decimal Places Debug.Print MyRound(1.055,100) produces ==> 1.06
Comment