View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Zone Zone is offline
external usenet poster
 
Posts: 269
Default How do I move cursor to next empty space??

Cells(65536, "b").End(xlUp).Offset(1, -1).Select
James
WANNABE wrote:
I am trying to populate cells from multiple CSV files into one XLS file and
I need to locate the last cell with data in column B and move the cursor to
the next row down in column A. Can someone tell me how to locate that last
data cell ???