Macro to ignore first row, or move with multiple criteria

MelissaY1

New Member
Joined
Jul 30, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I am admittedly ignorant & dumb to Macro's but I am trying to learn so please bear with me!

I have a project tracking spreadsheet with multiple sheets of information for varying stages of the tasks. On the main sheet I have a column that has multiple sets of completion (Complete, Hold, NIGO, In Progress, Waiting for Info). Currently I have a macro that will move & delete anything with "complete" in the column to another sheet. I would like to be able to run a macro that recognizes if a cell has anything in the column. With the help of google I have found a formula that somewhat works BUT when I run the macro, it moves & deletes the header row from my sheet, which I obviously don't want to happen.

How can I either -
1. create a macro that ignores the header row & will move & delete anything that is in column Q
or
2. create a macro that will move & delete multiple criteria for column Q

The macro I am currently running -

Sub move_rows_to_another_sheet()
For Each myCell In Selection.Columns(17).Cells
If myCell.Value = "Complete" Then
myCell.EntireRow.Copy Worksheets("Completed Cases").Range("A" & Rows.Count).End(3)(2)
myCell.EntireRow.Delete
End If
Next
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.
How about checking if row is >1 (so skipping header row):
Excel Formula:
Sub move_rows_to_another_sheet()
For Each myCell In Selection.Columns(17).Cells
If myCell.Row>1 then
  If myCell.Value = "Complete" Then
    myCell.EntireRow.Copy Worksheets("Completed Cases").Range("A" & Rows.Count).End(3)(2)
    myCell.EntireRow.Delete
  End If
end if
Next
End Sub
 
Upvote 0
I think the code has bigger issues.
Selection.Columns(17) is not necessarily column Q it is the 17th column in the selection.
• Deleting from the top down causes syncing issues as you step down the rows since the rows below move every time you delete a row.

Tell us what your "multiple criteria" are so we can modify the If statement. In the meantime see if this helps.
It assumes Row 1 of the sheet is the heading row and starts at row 2.

VBA Code:
Sub move_rows_to_another_sheet_Mod()
    Dim wsSrc As Worksheet, wsComplete As Worksheet
    Dim rngSrc As Range, rngDelete As Range
    Dim mycell As Range
    
    Set wsSrc = ActiveSheet
    With wsSrc
        Set rngSrc = .Range(.Cells(2, "Q"), .Cells(Rows.Count, "Q").End(xlUp))
    End With
    
    Set wsComplete = Worksheets("Completed Cases")
    
    For Each mycell In rngSrc.Cells
        If mycell.Value = "Complete" Then
            mycell.EntireRow.Copy wsComplete.Range("A" & Rows.Count).End(3)(2)
            If rngDelete Is Nothing Then
                Set rngDelete = mycell
            Else
                Set rngDelete = Union(mycell, rngDelete)
            End If
        End If
    Next mycell
    
    If Not rngDelete Is Nothing Then rngDelete.EntireRow.Delete
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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