I am facing the good old runtime error 1004 with the following code
Worksheets("abc").Range(Cells(4, 9), Cells(15, 9)).ClearContents
I have tried
Worksheets("abc").Range("I4:I15").ClearContents
and it works.
The reason why I need the Range(Cells(...)) format is because I actually write
Worksheets("abc").Range(Cells(4, 9), Cells(Max, 9)).ClearContents
So I want to control the range via a variable. For me the error doesn't make any sense, but well with Excel you never know ;)