Copy data range and insert the copied data by the next row

TPortsmouth

New Member
Joined
Apr 6, 2017
Messages
41
Hello,

With the help of Excel expert here, I've created below VBA to copy a user defined range and paste at the bottom.

Code:
Sub CopyRecord()
'

lr = Range("A" & Rows.Count).End(xlUp).Row + 1
'lr is to determine the Last Row

Last = Range("A" & Rows.Count).End(xlUp).Row
'This is to to determine the last Row address

Record_Number = Application.InputBox("Which record you want to copy?", Type:=1)
If Record_Number = "" Or Record_Number = 0 Then MsgBox ("Cancelled by user"): Exit Sub
' this checks for Cancel or 0

If Record_Number > Last Then MsgBox "Record does not exist!": Exit Sub
' This is to display error message if user entered a number larger than the existing record number.

Range("A" & Record_Number & ":E" & Record_Number + 2).Copy
    Range("A" & lr).Select
    ActiveSheet.Paste
End Sub

However, I don't know how to change the code into the next row underneath the copied data.

For example, after execute the Macro, Range(4:6) will be copy.

AgQGRFN.jpg


And then using "Insert copied Cells" to insert the whole 3 row's data into the underneath row.

G8nO3S4.jpg


Apart from that, how do I change the code from a specific range to the whole row?
Code:
Range("A" & Record_Number & ":E" & Record_Number + 2).Copy

I've tried to changed to something like below and it return error
Code:
Range(Record_Number  : Record_Number + 2).Copy

Please offer help, thank you.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi There,

Based on your code,

Replace the copy line by this
Code:
Rows(Last).Copy Destination:=Rows(lr)

That would copy one row and copy it to the destination

If you want mutliple row you will need to use

Code:
Rows("A:" & Last).Copy Destination:=Rows(lr)

Where (A) is the first of the rows you need to copy (Last being the last) and lr the first to copy the data.

I hope it helps.

Best regards,
 
Upvote 0
Hi sericom,

Thanks for your advise, yes, the copy whole row works! Thanks.

However, as for the paste destination, I am not asking to paste the data at the last row. I am asking to "Insert" the copied rows right underneath the source row.

Can you further provide your suggestion on this? Thanks.

Would your new last row just be lr+2
And to copy the whole row
Range(Record_Number & ":" & Record_Number + 2).Copy
 
Upvote 0
Does this do it

Code:
Rows(Record_Number & ":" & Record_Number + 2).Copy
Rows(Record_Number + 3).Insert Shift:=xlDown
Application.CutCopyMode = False
 
Upvote 0

Forum statistics

Threads
1,216,750
Messages
6,132,499
Members
449,730
Latest member
SeanHT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top