Copy row into new workbook if certain cell meets criteria

afcalan

New Member
Joined
Jun 21, 2016
Messages
2
Hi

I am trying to copy the entire row to a new workbook if column P says Fail in it.

I want to loop this code until column c is empty. I also want to start the search at row 6 and start the pasting at row 2.

My code is below, but at the moment it appears to be stuck in an eternal loop...any pointers would be greatfully received.


Code:
Sub fails_defects_no_ws()
Dim i As String
Dim j As String
Dim uat As Workbook
Dim Results As Workbook
i = 6
j = 2
Set uat = ActiveWorkbook
Workbooks.Add
Set Results = ActiveWorkbook
uat.Activate
Sheets("Sheet1").Select
While Not IsEmpty(Cells(i, 3))
    If Range("P" & CStr(i)).Value = "Fail" Then
        Rows(CStr(i) & ":" & CStr(i)).Copy
        Results.Activate
        Range("A" & j).Select
        ActiveSheet.Paste
        j = j + 1
        
        
        uat.Activate
    Else
    
    End If
    
DataRowNum = datatrownum + 1
Wend
End Sub
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Please ignore...i've fixed this myself.
I was using an old reference 'datarownum' rather than i
 
Upvote 0

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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