Copy from closed workbook to open with a keyword problem

CaliburBlade138

New Member
Joined
Apr 18, 2021
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hey all,

I wrote some code to open up an excel file and get the number of used rows, but I am stumped on figuring out looking for a keyword *WH* in column J, if found, copy row and paste in new workbook, can anyone help finish this code?

VBA Code:
Sub Import_Data_And_Update()

Dim workbookA As Workbook, worksheetA As Worksheet
Dim workbookB As Workbook, worksheetB As Worksheet
Dim myFileName As String
Dim myLastR As Long

'Open the file dialog picker
    With Application.FileDialog(msoFileDialogFilePicker)
        .AllowMultiSelect = False
        .Filters.Add "Excel Files", "*.xlsx; *.xlsm; *.xls; *.xlsb", 1
        If .Show = False Then Exit Sub
        myFileName = .SelectedItems.Item(1)
    End With

'This workbook
Set workbookA = ThisWorkbook
Set worksheetA = workbookA.Sheets("Status")

Application.ScreenUpdating = False

'The workbook we are going to open
Set workbookB = Workbooks.Open(myFileName, True, True)
Set worksheetB = workbookB.Sheets("Backlog")

myLastR = worksheetB.Cells(Rows.Count, 1).End(xlUp).Row

'Do code here to copy from and to...



workbookB.Close False

End Sub
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi,
see if this update to your code will help you

VBA Code:
Sub Import_Data_And_Update()
   
    Dim workbookA   As Workbook, workbookB As Workbook
    Dim worksheetA  As Worksheet, worksheetB As Worksheet
    Dim myFileName  As String
    Dim copyrng     As Range
   
    'Open the file dialog picker
    With Application.FileDialog(msoFileDialogFilePicker)
        .AllowMultiSelect = False
        .Filters.Add "Excel Files", "*.xlsx; *.xlsm; *.xls; *.xlsb", 1
        If .Show = False Then Exit Sub
        myFileName = .SelectedItems.Item(1)
    End With
   
    On Error GoTo myerror
    'This workbook
    Set workbookA = ThisWorkbook
    Set worksheetA = workbookA.Worksheets("Status")
   
    Application.ScreenUpdating = False
   
    'The workbook we are going to open
    Set workbookB = Workbooks.Open(myFileName, True, True)
    Set worksheetB = workbookB.Worksheets("Backlog")
   
    With worksheetB
        With .Cells(1, 1).CurrentRegion
            .AutoFilter Field:=10, Criteria1:="=*WH*"
        End With
        Set copyrng = .AutoFilter.Range
    End With
   
    'Do code here to copy from and to...
   
    If copyrng.Rows.Count > 1 Then
       
        copyrng.SpecialCells(xlCellTypeVisible).Copy worksheetA.Range("A1")
       
    Else
   
        Err.Raise 600, , "No Matches Found"
       
    End If
   
myerror:
    If Not workbookB Is Nothing Then workbookB.Close False
    Application.ScreenUpdating = True
    If Err <> 0 Then MsgBox (Error(Err)), 48, "Error"
   
End Sub

Solution untested & you will need to adapt code as required to meet specific project need

Dave
 
Upvote 0
Solution

Forum statistics

Threads
1,214,869
Messages
6,122,015
Members
449,060
Latest member
LinusJE

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