Hi,
I have a range called "round" where i want to run this code :
Sub round()
Dim rRng As Range
Set rRng = Sheet1.Range("round")
For Each cell In Range("round")
cell.Value = WorksheetFunction.round(cell.Value, 2)
Next cell
End Sub
However, I wanty to ignore...