Copy and Paste Problem

kalumbair

New Member
Joined
Aug 2, 2018
Messages
35
Hello Everyone,

i'd like to copy the entire last row of a sheet called ("HL_1") and pasted it to another sheet called ("HL_COMBINED"). I should also point out that they are both table formatted. the code i'm using is below, but it's just not working. any assistance is greatly appreciated.

Private Sub CommandButton1_Click()
Dim i, LastRow
LastRow = Sheets(?HL_1?).Cells(Rows.Count).End(xlUp).Row

For i = 2 To LastRow
If Sheets(?HL_1?).Cells(i, ?A?).Value = ?? Then
Sheets(?HL_1?).Cells(i, ?A?).EntireRow.Copy Destination:=Sheets(?HL_COMBINED?).Range(?A? & Rows.Count).End(xlUp).Offset(1)
End If
Next i
End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Lol, something funky must have happened when I paste it. They're not? They're supposed to be quotation marks.
 
Upvote 0
You said:
i'd like to copy the entire last row of a sheet called ("HL_1")

If you want to copy the lastrow why do you think you need a loop with a If Statement looking for nothing?
 
Upvote 0
Hy, when You use Cells to refer a cell (not range) try to change the address' of columns from "A" to 1.
Something like this :
Code:
[COLOR=#333333][FONT=Helvetica]Private Sub CommandButton1_Click()[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]Dim i, LastRow[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]LastRow = Sheets("HL_1").Cells(Rows.Count).End(xlUp).Row[/FONT][/COLOR]

[COLOR=#333333][FONT=Helvetica]For i = 2 To LastRow[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]If Sheets("HL_1").Cells(i, 1).Value = "" Then[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]Sheets("HL_1").Cells(i, 1).EntireRow.Copy Destination:=Sheets("HL_COMBINED").Range("A" & Rows.Count).End(xlUp).Offset(1)[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]End If[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]Next i[/FONT][/COLOR]
[COLOR=#333333][FONT=Helvetica]End Sub[/FONT][/COLOR]
 
Last edited:
Upvote 0
You said:
i'd like to copy the entire last row of a sheet called ("HL_1")

If you want to copy the lastrow why do you think you need a loop with a If Statement looking for nothing?[/QUOTE

It was a suggestion given to me. But obviously it doesn't work, lol. All I'm trying to do is copy the entire last row of one sheet ("HL_1") and paste it to the last empty Row in another sheet ("HL_COMBINED"). if you can help me simplify this task, I'd be forever grateful.
 
Upvote 0
I have some time to check your code again, i come up with this code, please check it.
It's working for me.

Code:
[COLOR=#333333]Private Sub CommandButton1_Click[/COLOR]()

Sheets("HL_1").Range("A" & Rows.Count).End(xlUp).EntireRow.Copy _
Destination:=Sheets("HL_COMBINED").Range("A" & Rows.Count).End(xlUp).Offset(1)

End Sub
 
Last edited:
Upvote 0
Oh and another possible problem:
As You said the two sheets formatted as Table.
If You will use my code You need to expand the table on the target sheet with the new lines.

If You need, use this code:

Code:
Private Sub [COLOR=#333333]CommandButton1_Click[/COLOR]()
    Sheets("HL_1").Range("A" & Rows.Count).End(xlUp).EntireRow.Copy _
    Destination:=Sheets("HL_COMBINED").Range("A" & Rows.Count).End(xlUp).Offset(1)
    Expandtable
End Sub

[COLOR=#333333]Private Sub[/COLOR] Expandtable()
    Sheets("HL_COMBINED").Select
    If ActiveSheet.FilterMode Then ActiveSheet.AutoFilter.ShowAllData
    LastRow = ActiveSheet.Range("A1").Offset(ActiveSheet.Rows.Count - 1, 0).End(xlUp).Row
    ActiveSheet.ListObjects("HL_COMBINED_TABLE").Resize Range("$A$1:$C$" & LastRow) ' Change Your table's name and range in this line if it needed!!
End Sub
 
Last edited:
Upvote 0
urobee,

thank you for jumping it, really appreciate the support!. the first code you sent worked beautifully, but it didn't paste to the table, instead it just paste the data under it. the second code doesn't work at all and I tried changing the name to what you suggested. pls advise.

v/

Oh and another possible problem:
As You said the two sheets formatted as Table.
If You will use my code You need to expand the table on the target sheet with the new lines.

If You need, use this code:

Code:
Private Sub [COLOR=#333333]CommandButton1_Click[/COLOR]()
    Sheets("HL_1").Range("A" & Rows.Count).End(xlUp).EntireRow.Copy _
    Destination:=Sheets("HL_COMBINED").Range("A" & Rows.Count).End(xlUp).Offset(1)
    Expandtable
End Sub

[COLOR=#333333]Private Sub[/COLOR] Expandtable()
    Sheets("HL_COMBINED").Select
    If ActiveSheet.FilterMode Then ActiveSheet.AutoFilter.ShowAllData
    LastRow = ActiveSheet.Range("A1").Offset(ActiveSheet.Rows.Count - 1, 0).End(xlUp).Row
    ActiveSheet.ListObjects("HL_COMBINED_TABLE").Resize Range("$A$1:$C$" & LastRow) ' Change Your table's name and range in this line if it needed!!
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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