I need to create a VBA code that will delete the contents of a cell without moving the cell location. I have tried the following code with the clear contents; however that does not satisfy the needs of the sheet that this information is going to. The only way I can make the cells truly clear is to press 'delete' in each cell. There is a long range of cells and this is taking way too much time. I could really use some help.
This is what I have, but it does not meet my needs.
For Each cell In Range("C7:R1006")
If cell = 0 Then cell.ClearContents
Next cell
Thanks
Chris
Bookmarks