I'm trying to clear contents of a range of cells, A2-C100 but excluding headers (so technically A2-A100, B2-B100 and C2-C100).
How can I do this without specifying range for every column?
So far I had this:
How can I do this without specifying range for every column?
So far I had this:
Code:
Range("A2:A100").ClearContents
Range("B2:B100").ClearContents
Range("C2:C100").ClearContents