Copying Row to another Worksheet based on multiple criteria.

noveske

Board Regular
Joined
Apr 15, 2022
Messages
120
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Attempting to copy over a row based on multiple criteria. Was able to get it to work with matching just one criteria.
Lost with how to add the second criteria. Trying and statements but I think I'm just way off. Got lost since if status is for criteria1, then how to add in criteria2 and second range.

Seeing how to make it one module and if it's possible to update dynamically (live) or on sheet change / save so buttons wouldn't be needed.


Column D contains:
6-2
2-10

Column F contains:
O
P
S
2
3
4

Trying to figure out:
If 6-2 and 2, 3, or 4 copy to Sheet6.
If 2-10 and 2, 3, or 4 copy to Sheet7.

Successful:
If 6-2 copy to Sheet6.
If 2-10 copy to Sheet7.



VBA Code:
Sub Copy1()

Dim StatusCol As Range
Dim Status As Range
Dim PasteCell As Range


Set StatusCol = Sheet2.Range("D2:D100")

For Each Status In StatusCol


    If Sheet6.Range("A2") = "" Then
        Set PasteCell = Sheet6.Range("A2")
    Else
        Set PasteCell = Sheet6.Range("A1").End(xlDown).Offset(1, 0)
    End If


    If Status = "6-2" Then Status.EntireRow.Copy PasteCell
Next Status


        
End Sub

VBA Code:
Sub Copy2()

Dim StatusCol As Range
Dim Status As Range
Dim PasteCell As Range


Set StatusCol = Sheet2.Range("D2:D100")

For Each Status In StatusCol


    If Sheet7.Range("A2") = "" Then
        Set PasteCell = Sheet7.Range("A2")
    Else
        Set PasteCell = Sheet7.Range("A1").End(xlDown).Offset(1, 0)
    End If


    If Status = "2-10" Then Status.EntireRow.Copy PasteCell
Next Status


        
End Sub
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Update: Was able to figure it out. Posting in case someone is looking for something similar.
Went with if F is not numeric.

VBA Code:
 If cellValueD = "6-2" Then
            If IsNumeric(cellValueF) And Len(cellValueF) = 1 Then
                ' Copy row to sheet 6-2
                rngInput.EntireRow.Copy Sheet6.Cells(Sheet6.Cells(Sheet6.Rows.Count, "D").End(xlUp).Row + 1, "A")
            End If
           
        ElseIf cellValueD = "2-10" Then
            If IsNumeric(cellValueF) And Len(cellValueF) = 1 Then
                ' Copy row to sheet 2-10
                rngInput.EntireRow.Copy Sheet7.Cells(Sheet7.Cells(Sheet7.Rows.Count, "D").End(xlUp).Row + 1, "A")
            End If
           
        End If
 
Upvote 0
Solution

Forum statistics

Threads
1,215,133
Messages
6,123,233
Members
449,092
Latest member
SCleaveland

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