So korrigieren Sie eine Zahl auf 2 Dezimalstellen in VBA

Sub rounding() 
ActiveCell.Select Selection.Value = Format(ActiveCell, "#.00")
End Sub
Arrogant Ant