[VBA] Exporting from one workbook to another

RobWulf

Board Regular
Joined
Apr 19, 2013
Messages
76
Okay, I need help with this. My goal is to use the following code to export any line that matches a managers name into a corosponding spreadsheet for each manager from our master report. I was using the first bit of code on a test file to help me learn how to get it to work but this only goes from one sheet to another in the same workbook, and since I have tried to replicate the same thing but using a bit of code I found to open the external books now it is not copying the lines, just tossing up errors about subscript out of range.
It's probably something simple that I am missing but I am at a loss and I have been trying to figure this out for the better part of an hour with nothing making sense to me.

Code:
'this works as long as it is in the same workbook.

Sub Button4_Click()
'----------------------------------------------------------------------
'This Copies a row
'----------------------------------------------------------------------
Dim c As Range
Dim lastrow As Long
Dim d As Range
Dim nextRow As Long
Dim nextRow2 As Long
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets("Sheet2")
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 1).Row
nextRow2 = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 1).Row
nextRow = 1
'nextRow2 = 1
lastrow = Sheets("Sheet2").Cells(Rows.Count, "A").End(xlDown).Row
     
Application.ScreenUpdating = False
Set c = Range("A1", Range("A9999").End(xlDown))
 
 
For Each d In c
'----------------------------------------------------------------------
'This sets the critiera being looked for in each row
'----------------------------------------------------------------------
    If d.Value = "Item 1" Then
        Range("A" & d.Row & ":AE" & d.Row).Copy Sheets("Sheet2").Range("A" & iRow)
        iRow = iRow + 1
        
    ElseIf d.Value = "Item 2" Then
        Range("A" & d.Row & ":AE" & d.Row).Copy Sheets("Sheet3").Range("A" & nextRow2)
        nextRow2 = nextRow2 + 1
         
        
    End If
Next d
Application.ScreenUpdating = True
End Sub

Code:
'THis is the code I have so far and it freaks out when it gets to either the sheet name or external sheet name
Sub CopyRow(control As IRibbonControl)
'----------------------------------------------------------------------
'This Copies a row
'----------------------------------------------------------------------
Dim c As Range
Dim lastrow As Long
Dim d As Range
Dim nextRow As Long
Dim nextRow2 As Long
Dim iRow As Long
Dim ws As Worksheet
Set ws = Worksheets(strName)
Dim wbTarget As Workbook 'workbook where the data is to be pasted
Dim wbThis   As Workbook 'workbook from where the data is to copied
'Dim strName  As String   'name of the source sheet/ target workbook
Dim strNae  As String
strName = ActiveSheet.Name
Set wbThis = ActiveWorkbook  'set to the current active workbook (the source book)
strName = ActiveSheet.Name  'get the active sheetname of the book
MsgBox strName
   'open a workbook that has same name as the sheet nme
Set wbTarget = Workbooks.Open("C:\Desktop\TestFolder\Test.xlsx") 'this opens the workbook that should be targeted
'-----------------------------------------------------------------------------------------
' This is being skipped, not sure why?  Not a big issue yet.
'-----------------------------------------------------------------------------------------
If ActiveSheet.Name = "Schedule" Then
MsgBox "The Schedule may not be Exported, please check the sheet name again."
Else
'-----------------------------------------------------------------------------------------
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 1).Row
nextRow2 = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 1).Row
nextRow = 1
nextRow2 = 1
'lastrow = wbTarget("Ideas").Cells(Rows.Count, "A").End(xlDown).Row
     
Application.ScreenUpdating = False
Set d = ws.Range("A11", Range("R9999").End(xlDown))
 
For Each d In c
'----------------------------------------------------------------------
'This sets the critiera being looked for in each row
'----------------------------------------------------------------------
 
   If d.Value = "Manager A" Then
   
       Range("A" & d.Row & ":AE" & d.Row).Copy wbTarget.Sheets("Report").Range("A" & iRow)
       iRow = iRow + 12
        
 '   ElseIf d.Value = "Manager B" Then
  '      Range("A" & d.Row & ":AE" & d.Row).Copy Sheets(strNae).Range("A" & nextRow2)
   '     nextRow2 = nextRow2 + 1
         
        
End If
Next d
Application.ScreenUpdating = True
End If
End Sub
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi Rob,

Here's a few comments to help you get on track. If you are still stuck, I could help with a rewrite tomorrow if you like.

1. Get your code working as a standalone Sub first before trying to integrate with the Ribbon controls.

2. Use meaningful variable names throughout. variables like wbTarget and wbSource are good. Statements like:
Code:
For Each d In c
...make your code harder to follow. (for both you and others).

3. This statement is trying to use the value of strName before it has any value is assigned to it.
Code:
 Set ws = Worksheets(strName)

4. Be very careful when using expressions ActiveSheet, ActiveWorkbook, ActiveCell. Some of the problems you are having stem from assumptions you are making about which sheet or workbook is Active at the time you are using those keywords.

5. Related to the #4, be aware that when you use the Workbooks.Open method, the opened workbook will become the ActiveWorkbook, and the ActiveSheet will be the sheet that was Active the last time that workbook was saved (which could be any sheet in that workbook).

6. To find the last row with data, consistently use Range.End(xlUp). you are mixing in Range.End(xlDown) which should only be used to find the last cell of data before the first empty cell.

7. When working with multiple open workbooks, use fully qualified references that include the Workbook and Worksheet.

Code:
Range("A" & d.Row & ":AE" & d.Row).Copy wbTarget.Sheets("Report").Range("A" & iRow)

In the above statement the reference to the Target Range is fully qualified, the reference to the Source Range is not. Excel will interpret that you mean the ActiveSheet in the ActiveWorkbook, but that puts more burden on your code to keep track of what is Active. It's much more robust to be explicit and not rely on what is Active.

Hope this helps! :)
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

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