View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Norman Jones Norman Jones is offline
external usenet poster
 
Posts: 5,302
Default Find last cell of data

Hi Striker,

LastRow = Cells(Rows.Count, "A").End(xlUp).Row


should read:

LastRow = Cells(Rows.Count, "A").End(xlUp)(2).Row


---
Regards,
Norman