Hi, there is probably a more elegant way to do this, but give this a
try:
Sub roundTest()
Dim myRound&
Dim X%
For X = 1 To 3
If WorksheetFunction.RoundUp(Cells(X + 2, 2) / 100, 1) * 100 <= 5 +
Cells(X + 2, 2) Then
myRound = WorksheetFunction.RoundUp(Cells(X + 2, 2) / 100, 1) * 100
Else
myRound = WorksheetFunction.RoundDown(Cells(X + 2, 2) / 100, 1) * 100
End If
Debug.Print Cells(X + 2, 2) & " Rounded to : " & myRound
Next X
End Sub
HTH--Lonnie M.