Copy specific columns of 2 sheets from Workbook A to 1 Summary sheet of workbook B

coexcelnewbie

New Member
Joined
Aug 1, 2017
Messages
3
Sub Rectangle1_Click()


Dim lr As Long
Here is my code. However, it only copies the columns from the 1st sheet. How can I add the data from the 2nd sheet below the copied data from the 1st sheet into the summary (RAID)?


Workbooks("Source").Activate


lr = Cells(Rows.Count, 3).End(xlUp).Row


Range("B3:B" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("B3")
Range("E3:E" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("C3")
Range("T3:T" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("D3")
Range("H3:I3" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("E3")
Range("AC3:AC" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("G3")




End Sub
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Code:
Sub copyStuff()
Dim sh1 As Worksheet, sh2 As Worksheet
Set sh1 = Workbooks("Source").Sheets("Sheet1") 'Substitute your 1st source sheet name here
Set sh2 = Workbooks("Source").Sheets("Sheet2") 'Substitute your 2nd source sheet nsme here
With sh1
   lr = Cells(Rows.Count, 3).End(xlUp).Row
   .Range("B3:B" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("B3")
   .Range("E3:E" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("C3")
   .Range("T3:T" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("D3")
   .Range("H3:I3" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("E3")
   .Range("AC3:AC" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("G3")
End With
With sh2
   lr = Cells(Rows.Count, 3).End(xlUp).Row 'Validate column reference is 3 for 2nd sheet
   [COLOR=#daa520]'your range to copy here.[/COLOR]Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, [COLOR=#b22222]"B[/COLOR]").End(xlUp)(2)
End With
End Sub
Change the column reference to reflect which column you want to post to.
The commented line would be repeated for each range to copy similar to your original code. The syntax for posting the values will look for the next avaliable row within that column. The source range references will need a period (.) in front of them to tie them to the 'With' statement.
 
Last edited:
Upvote 0
Code:
Sub copyStuff()
Dim sh1 As Worksheet, sh2 As Worksheet
Set sh1 = Workbooks("Source").Sheets("Sheet1") 'Substitute your 1st source sheet name here
Set sh2 = Workbooks("Source").Sheets("Sheet2") 'Substitute your 2nd source sheet nsme here
With sh1
   lr = Cells(Rows.Count, 3).End(xlUp).Row
   .Range("B3:B" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("B3")
   .Range("E3:E" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("C3")
   .Range("T3:T" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("D3")
   .Range("H3:I3" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("E3")
   .Range("AC3:AC" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Range("G3")
End With
With sh2
   lr = Cells(Rows.Count, 3).End(xlUp).Row 'Validate column reference is 3 for 2nd sheet
   [COLOR=#daa520]'your range to copy here.[/COLOR]Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, [COLOR=#b22222]"B[/COLOR]").End(xlUp)(2)
End With
End Sub
Change the column reference to reflect which column you want to post to.
The commented line would be repeated for each range to copy similar to your original code. The syntax for posting the values will look for the next avaliable row within that column. The source range references will need a period (.) in front of them to tie them to the 'With' statement.

There are no errors but it's not copy pasting properly..

With sh2
lr = Cells(Rows.Count, 3).End(xlUp).Row 'Validate column reference is 3 for 2nd sheet
'your range to copy here.Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "B").End(xlUp)(2)
.Range("B3:B" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "B").End(xlUp)(2)
.Range("E3:E" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "C").End(xlUp)(2)
.Range("T3:T" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "D").End(xlUp)(2)
.Range("H3:I3" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "E").End(xlUp)(2)
.Range("AC3:AC" & lr).Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "G").End(xlUp)(2)



End With
 
Upvote 0
What do you mean by 'not posting properly'? Wrong sheet? Wrong column? Which one? Wrong row? What? Please be specific when describing code results.
 
Upvote 0
What do you mean by 'not posting properly'? Wrong sheet? Wrong column? Which one? Wrong row? What? Please be specific when describing code results.

I wanted to copy filtered columns for both sheets. However, it's copying the selected columns ignoring the filter and It's also only copying the first sheet.

Sub Rectangle1_Click()
Dim lr As Long


Workbooks("Source").Activate
Set sh1 = Workbooks("Source").Sheets("Risks") 'Substitute your 2nd source sheet nsme here
Set sh2 = Workbooks("Source").Sheets("Issues") 'Substitute your 2nd source sheet nsme here


With sh1
lr = Cells(Rows.Count, 3).End(xlUp).Row


Range("B3:B" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Range("B3")
Range("E3:E" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Range("C3")
Range("T3:T" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Range("D3")
Range("H3:I3" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Range("E3")
Range("AC3:AC" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Range("G3")
End With
With sh2
lr = Cells(Rows.Count, 3).End(xlUp).Row 'Validate column reference is 3 for 2nd sheet
'your range to copy here.Copy Workbooks("Report Destination").Sheets("RAID").Cells(Rows.Count, "B").End(xlUp)(2)
Range("B3:B" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Cells(Rows.Count, "B").End(xlUp)(2)
Range("E3:E" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Cells(Rows.Count, "C").End(xlUp)(2)
Range("T3:T" & lr).Copy Workbooks("Report - Email").Sheets("RAID").Cells(Rows.Count, "D").End(xlUp)(2)
Range("H3:I3" & lr).Copy Workbooks(" Report - Email").Sheets("RAID").Cells(Rows.Count, "E").End(xlUp)(2)
Range("AC3:AC" & lr).Copy Workbooks(" Report - Email").Sheets("RAID").Cells(Rows.Count, "G").End(xlUp)(2)


End With


End Sub
 
Upvote 0
The OP says nothing about the data being in a filter. To copy filtered data with VBA you need to use the 'SpecialCells' function.

Code:
Range("B3:B" & lr).[COLOR=#FF0000]SpecialCells(xlCellTypeVisible)[/COLOR].Copy Workbooks("Report - Email").Sheets("RAID").Range("B3")
 
Upvote 0

Forum statistics

Threads
1,215,802
Messages
6,126,986
Members
449,351
Latest member
Sylvine

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