VBA - copying column data from one workbook to the other and pasting in the last cell of a column in the new workbook

tanyaleblanc

Board Regular
Joined
Mar 16, 2019
Messages
145
Hi, I'm trying to copy column of cells from on column from one workbook to another column on another workbook and paste it in the last blank cell of that column in the new workbook, below, all the data should be pasting in the last cell of each column, most are pasting correctly but some are not. They should paste in cell 50 - 55 of my columns, but some are pasting in cells 56- 61

Code:
Windows("Rental Extract.xls").Activate    Range("Q11").Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("J" & lrownew).PasteSpecial Paste:=xlPasteValues
    Windows("Rental Extract.xls").Activate
    Range("R11").Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("M" & lrownew).PasteSpecial Paste:=xlPasteValues
    Windows("Rental Extract.xls").Activate
    Range("N11").Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("N" & lrownew).PasteSpecial Paste:=xlPasteValues
    Windows("Rental Extract.xls").Activate
    lRow = Cells(Rows.Count, "E").End(xlUp).Row
    Range("C11:C" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    lrownew = Cells(Rows.Count, "E").End(xlUp).Row + 1
    Range("O" & lrownew).PasteSpecial Paste:=xlPasteValues
[B]    'pasted in row 56-61, column O but should have been 50-55, column O[/B]
    Windows("Rental Extract.xls").Activate
    lRow = Cells(Rows.Count, "E").End(xlUp).Row
    Range("B11:B" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    lrownew = Cells(Rows.Count, "E").End(xlUp).Row + 1
    Range("P" & lrownew).PasteSpecial Paste:=xlPasteValues
    Windows("Rental Extract.xls").Activate
    Range("A11:A" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
[B]'same error as above[/B]
    Windows("New Rental Contract.xls").Activate
    Range("W" & lrownew).PasteSpecial Paste:=xlPasteValues
    Windows("Rental Extract.xls").Activate
    Range("W11:W" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("Q" & lrownew).PasteSpecial Paste:=xlPasteValues
    [B]'same error as above[/B]
    Windows("Rental Extract.xls").Activate
    Range("X11:X" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("R" & lrownew).PasteSpecial Paste:=xlPasteValues
    [B]'same error as above[/B]
    Windows("Rental Extract.xls").Activate
    Range("Y11:Y" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("U" & lrownew).PasteSpecial Paste:=xlPasteValues
   [B]'same error as above[/B]
    Windows("Rental Extract.xls").Activate
    Range("Z11:Z" & lRow).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Windows("New Rental Contract.xls").Activate
    Range("V" & lrownew).PasteSpecial Paste:=xlPasteValues
    [B]'same error as above[/B]
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
I don't see anywhere in your macro how the variable lrownew is calculated. Also, you don't need to use "Activate" or "Select" to do perform most actions. I think that it would be easier to help and test possible solutions if I could work with your actual files which includes any macros you are currently using. Perhaps you could upload a copy of your 2 files to a free site such as www.box.com or www.dropbox.com. Once you do that, mark each file for 'Sharing' and you will be given a link to the file that you can post here. Include a detailed explanation of what you would like to do using a few examples from your data and referring to specific cells, rows, columns and worksheets. If the workbook contains confidential information, you could replace it with generic data.
 
Upvote 0

Forum statistics

Threads
1,217,449
Messages
6,136,699
Members
450,025
Latest member
Beginner52

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