<tbody>
Sub CleaZero()
Range("D7:N" & Cells(Rows.Count, "A").End(xlUp).Row).Replace 0, "", xlWhole, , , , False, False
End Sub
</tbody>
I want to clear values that are greater than or equal to 1 so I tried changing
•Replace 0, ""
To
.Replace "+*", ""
But didn't work. Can someone...