Moving a range to end of list

  • Thread starter Thread starter Sinjin341
  • Start date Start date
S

Sinjin341

Hi Everyone,

What I would like to do is fill a range with misc. data. Then I wan
to move that data to the end of a list. The range of cells the data i
entered into is identical to the cells I want to move the data to. Th
list is rather long and still growing so to automate this process woul
be fantastic. I am very limited in my VB knowledge so any help woul
be greatly appreciated.

Thank you,
Sinjin34
 
a simple demo

Sub moverange()
Range("f12:g15").Cut Range("h1")
End Sub
 

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