vbs Find last row and paste

  • Thread starter Thread starter madtown
  • Start date Start date
M

madtown

Hi,
I am fairly new to script writing and could use some assistance.
I am trying to write a vbs script that will populate daily informatio
to one sheet and then append that same data to the next open row on
second sheet. Is there a way with vbs to find that next open row.

Thanks
 
with worksheets(2)
set rng = .Cells(rows.count,1).End(xlup)(2)
End with

Selection.Copy Destination:=rng
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top