Moving a range to end of list

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

Sinjin341

Thanks Don,

Can we go a little further with this? I see moving the data i
fairly easy. Now, how can I move the data to the end of the list afte
every new entry? This list is growing and I won't be putting th
information in the same cell. Also, I would like to move this dat
without the current cell formatting.

Thanks Again :)
Sinjin34
 
try this

Sub moverange()
x=cells(rows.count,"H").end(xlup).row+1
range(cells(x,"h"),cells(x+3,"I")).value=Range("f12:g15").value
Range("f12:g15").entirerow.delete
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