I want to clear the contents out of cells A2:C.
I have column names in A1, B1, and C1 that I don't want cleared.
Sub Clear_Contents()
Range("A2:C").ClearContents
End Sub
I get an error.
I can change the range to be "A2:C100" or any other hard coded number but I want to clear from A2:A, B2:B, and C2:C.