View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Rakesh Sharma Rakesh Sharma is offline
external usenet poster
 
Posts: 1
Default what VBA command is used to go to the next blank row in Excel?

On May 27, 8:52*pm, Rugby Stud
wrote:
Check out:http://www.mrexcel.com/articles/copy...-blank-row.php



"Bobby J" wrote:
I'm writing a macro to cut and paste data to the next blank row in an Excel
file. *Any ideas?- Hide quoted text -


- Show quoted text -


Use this

Range("A1").end(xldown).offset(1,0).select
Activesheet.paste


Regards
Rakesh