View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default Selecting multi rows


Range("A" & FstRw).Resize(LstRw - FstRw + 1).Select

or

Range(Cells("A" & FstRw), Cells(LstRw,"A"))

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Derek Mansfield" wrote in message
.uk...
I wish to select rows from row FstRw to row LstRw where FstRw and LstRw

are
established by my previous code. I can only find reference to selecting a
single row as a variable and multi rows by fixed row numbers. Any help
would be much appreciated.
Thanks
Derek Mansfield