VBA - Copy and paste rows if conditions have been met

Evie76

New Member
Joined
Jan 17, 2022
Messages
36
Office Version
  1. 365
Platform
  1. Windows
I need to copy row data from one sheet to another if yes is in column BE, No match in coloums BL, BM and BN and if Column BO is blank

Can any one please help, i have tried the below code but its not working

VBA Code:
Private Sub filter()

For i = 2 To lastrow

If Worksheets("Data Only").Cells(i, 57).Value = "Yes" Then
    If Worksheets("Data Only").Cells(i, 64).Value = "No Match" Then
        If Worksheets("Data Only").Cells(i, 65).Value = "No Match" Then
            If Worksheets("Data Only").Cells(i, 66).Value = "No Match" Then
                If Worksheets("Data Only").Cells(i, 67).Value = "" Then
            

            Worksheets("Data Only").Rows(i).Copy
            Worksheets("Filter").Activate
            b = Worksheets("Filter").Cells(Rows.Count, 1).End(xlUp).Row
            Worksheets("Filter").Cells(b + 1, 1).Select
            ActiveSheet.Paste
                
                End If
            End If
        End If
    End If
    End If
    Next

Application.CutCopyMode = False
Worksheets("Data Only").Activate
Worksheets("Data Only").Cells(1, 1).Select
MsgBox ("Completed")
            
End Sub
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
If you really are using Excel 365, this VBA is totally unnecessary.
You can do this with the new Excel FILTER function.

Take a look here, especially the part that is entitled "FILTER used to return multiple criteria": FILTER function - Microsoft Support
 
Upvote 0

Forum statistics

Threads
1,215,156
Messages
6,123,339
Members
449,098
Latest member
thnirmitha

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