Appending Text

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am opentext files, copying the current region, and now want to append this
text to the bottom of a master worksheet. I imagine I need to locate the
first empty cell beyond the current region to activate and paste.

Any hints how to do that?

Thanks much, John V

PS To all of you regular contributors: thanks for your volunteer assistance.
Just reading all the posts has helped me a lot.
 
Dim rng as Range
Set rng = worksheets("Master").Cells(rows.count,1).End(xlup)(2)

rng holds a reference to where you want to paste.
 
end(xlup) finds the last cell with data. (2) steps down one cell.
 

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