Susan wrote:
> i have a simple question to go with yours........ if you don't provide
> the end of the range that you are deleting, how in the world will the
> macro know where to stop?????
In my particular case, it's supposed to delete all content in the
document, except for the first line. I don't care how it decides where
to stop, I was expecting the same "stop" as in
Worksheet.Rows.Delete xlShiftUp
just with the possibility to exclude the first line(s) from deletion.
Since Excel is apparently able to to that, it should be able to do what
I am trying to do also.
What I have found so far is
Worksheet.Range("2:65535).Delete
Sadly I have to provide a last line here, and I want Excel to be faster
if the document contains less lines. Also, this takes a long time where
Excel just freezes - and I don't understand why it should take longer than
Worksheet.Rows.Delete xlShiftup

Very unsatisfying.
Lars