Eivind has attended:
Excel VBA Intro Intermediate course
VBA
How can I make excel (VB) paste the next cells that I have copied right below the previous cells I pasted?
RE: VBA
Hi Eivind
Thank you for your question.
You can include the paste destination on a copy line
ActiveCell.Copy Destination:=ActiveCell.Offset(1, 0)
I hope that helps.
Laura GB