mthompso
Board Regular
- Joined
- Apr 18, 2008
- Messages
- 123
My current code is:
It takes over a minute for this VBA macro to evaluate each cell.
Is there a faster way to accomplish this task?
Background: The worksheet is protected. If it wasn't protected, I would simply change the number format so that the zeros don't even appear.
Thanks for your help.
Code:
For each rngCell in Range("MyRange")
If rngCell.Value = 0 Then rngCell.ClearContents
Next
Is there a faster way to accomplish this task?
Background: The worksheet is protected. If it wasn't protected, I would simply change the number format so that the zeros don't even appear.
Thanks for your help.