DonAndress
Active Member
- Joined
- Sep 25, 2011
- Messages
- 364
- Office Version
- 2019
- 2016
- Platform
- Windows
Hello.
I have a range Range("F14:R40") where each cell is a formula that returns a value.
I'd like to replace the content of each cell that returns zero to empty cell.
So I was thinking somethnig like that would do the trick but unfortunatelly it doesn't...
or
Can you please tell me how to do that quickly (in terms of the code time consumption)?
I have a range Range("F14:R40") where each cell is a formula that returns a value.
I'd like to replace the content of each cell that returns zero to empty cell.
So I was thinking somethnig like that would do the trick but unfortunatelly it doesn't...
Code:
With Range("F14:R40")
.Replace "0", "", xlWhole
End With
Code:
With Range("F14:R40")
.Replace 0, "", xlWhole
End With
Can you please tell me how to do that quickly (in terms of the code time consumption)?
Last edited: