Hi,
I have a range called "round" where i want to run this code :
However, I wanty to ignore all empty cells within the range. How can I do that ?
Cheers
I have a range called "round" where i want to run this code :
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 all empty cells within the range. How can I do that ?
Cheers