Move a range of cells?

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

Guest

Hi
I have a range of cells (let's say A4:C4) which I want to move down a selected number of rows, for example to A10:C10. How do I code this in VBA

Thanks
Christine
 
Christine,

Range("A4:C4").Cut Destination:=Range("A10:C10")

--
HTH,
Bernie
MS Excel MVP

Christine said:
Hi,
I have a range of cells (let's say A4:C4) which I want to move down a
selected number of rows, for example to A10:C10. How do I code this in VBA?
 

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