View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Frank Kabel Frank Kabel is offline
external usenet poster
 
Posts: 3,885
Default Select the next row after xldown range

Hi
try
Range(Selection, Selection.End(xlDown).offset(1,0)).Select


--
Regards
Frank Kabel
Frankfurt, Germany

I want to highlight column A all the way down to the end of its
current data range and then select the first row after the end of the
data range. Assuming column A has 14 rows of data I want to then
select the 15th row (i.e. A15).

What do I have to add to the end of this code to do that?


Range("A1").Select
Range(Selection, Selection.End(xlDown)).Select

Thanks


---
Message posted from http://www.ExcelForum.com/