View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Andoni[_22_] Andoni[_22_] is offline
external usenet poster
 
Posts: 1
Default Macro to find the next free line

Try this:

Range("A1").End(xlDown).Offset(1, 0).Select

or

Range("A65536").End(xlUp).Offset(1, 0).Selec

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