I would like to delete all the rows from Cell "A1" to the "ActiveCell.Address"
Tried this code:
Range(" A1:ActiveCell.Address").Delete Shift:=xlUp
But I'm getting an error on this (runtime error 1004).
Isn't it possible to refer to the ActiveCell's address within a range?
If so, is there an alternative?
Is my code incorrect?
Thanks in Advance.