...Place the code below in a module:
'Function to round a number to a factor (1,10,100,1000,etc..)
Function RoundCC(x, Factor)
RoundCC = Int(x * Factor + 0.5) / Factor
End Function
Then you call it like so:
'Round 10.235
RoundCC(10.235, 100)
This would result in the function returning...