Copy Rows Based on a Single Column Multiple Values

slpswhite

New Member
Joined
Jan 2, 2018
Messages
39
I have a workbook which I need to copy rows to a new worksheet. One of the columns is called Vendor. I have 12 different vendors, but 3 of them have different entries. Let's say column "C" is the vendor column and contains the following:

Vendor 1
Vendor 1 Onshore
Vendor 1 Offshore
Vendor 2
Vendor 2 Onshore
Vendor 2 Offshore
Vendor 3
Vendor 4
Vendor 5

What I need to do is copy all Vendor 1's to a new worksheet. So when the value of column "C" is any of the following Vendor 1, Vendor 1 Onshore, or Vendor 1 Offshore it is copied to the new workbook.

I have the following code which of course only works for the entry I input.
Code:
Private Sub Workbook_Open()
Dim i, LastRow


Set ws1 = Sheets("Raw Data SP")
Set ws2 = Sheets("Vendor")
LastRow = ws1.Range("A" & Rows.Count).End(xlUp).Row
ws2.Range("A2:S1000").ClearContents
For i = 2 To LastRow
If ws1.Cells(i, "C").Value = "Vendor 1" Then
ws1.Cells(i, "C").EntireRow.Copy Destination:=ws2.Range("A" & Rows.Count).End(xlUp).Offset(1)
End If
Next i
End Sub
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Try:
Code:
Sub CopyRows()
    Application.ScreenUpdating = False
    Dim LastRow As Long
    LastRow = Sheets("Raw Data SP").Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Sheets("Raw Data SP").Range("C1:C" & LastRow).AutoFilter Field:=1, Criteria1:="=Vendor 1*"
    Sheets("Raw Data SP").Range("C2:C" & LastRow).SpecialCells(xlCellTypeVisible).EntireRow.Copy Sheets("Vendor").Cells(Sheets("Vendor").Rows.Count, "A").End(xlUp).Offset(1, 0)
    If Sheets("Raw Data SP").AutoFilterMode = True Then Sheets("Raw Data SP").AutoFilterMode = False
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
This has been working great, however I ran into a small problem. It seems if I have a Vendor who is missing for a reporting period it causes an error. For instance Vendor B also has a worksheet called Vendor B, if they are not in the data I am trying to copy over it kicks an error. If I add the Vendor in column where the macro expects it it works great. Is there a way I can either change the code so it will either skip over the error or better yet if the name is not there to ignore the copying part of the code?
 
Upvote 0
How about this mod to mumps code
Code:
Sub CopyRows()
    Application.ScreenUpdating = False
    Dim LastRow As Long
    LastRow = Sheets("Raw Data SP").Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
    Sheets("Raw Data SP").Range("C1:C" & LastRow).AutoFilter Field:=1, Criteria1:="=Vendor 1*"
    [COLOR=#0000ff]On Error Resume Next[/COLOR]
    Sheets("Raw Data SP").Range("C2:C" & LastRow).SpecialCells(xlCellTypeVisible).EntireRow.Copy Sheets("Vendor").Cells(Sheets("Vendor").Rows.Count, "A").End(xlUp).Offset(1, 0)
    [COLOR=#0000ff]On Error GoTo 0[/COLOR]
    If Sheets("Raw Data SP").AutoFilterMode = True Then Sheets("Raw Data SP").AutoFilterMode = False
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,212
Members
452,618
Latest member
Tam84

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