REAL-TIME

VBA Projects

Full Access with Source Code
  • Designed and Developed by PNRao

  • Full Access with VBA Source Code

  • Well Commented Codes Lines

  • Creative and Professional Design

Effortlessly
Manage Your Projects

120+ Project Management Templates

Seamlessly manage your projects with our powerful & multi-purpose templates for project management.

120+ PM Templates Includes:
  • 50+ Excel Templates

  • 50+ PowerPoint Templates

  • 25+ Word Templates

Share Post

VBA code to delete rows based on multiple criteria example will help us to delete rows based on multiple conditions from excel worksheet. We can use Delete method of Rows to delete the rows based on multiple criteria. In this example we will see how to delete the rows in excel worksheet using VBA based on multiple criteria. VBA code for deleting rows based on multiple criteria macro should work for all the version of Microsoft Excel 2003, Excel 2007, Excel 2010, and Excel 2013.

VBA Delete Rows Based on Multiple Criteria Excel Macro Example Code

VBA code to delete rows based on multiple criteria


Here is the Example VBA syntax and Example VBA Macro to delete rows from excel worksheets based o multiple criteria. This will help you to know how to delete specific rows based on multiple conditions from Excel workbook using VBA.

VBA Delete rows based on multiple criteria: Syntax


Following is the VBA syntax and sample VBA code to delete rows based on multiple criteria from worksheet using VBA. We are using the Delete method of the Rows object of worksheet.


If Then Rows(“

[Row Numbers]”).EntireRow.Delete

Here is the conditions which you want to check to delete rows. And Row Numbers are the row numbers to delete. And EntireRow.Delete method will delete the Entire rows from the Excel spreadsheet.

Delete rows based on multiple criteria using VBA: Examples


The following VBA code is to delete rows based on multiple criteria from the excel worksheet. This code will delete the rows (1 to 20) if it satisfy the condition 1 if cell value is 1 and conition2 if cell value is blank.

Sub sbDelete_Rows_Based_On_Multiple_Criteria()
Dim lRow As Long
Dim iCntr As Long
lRow = 20
For iCntr = lRow To 1 Step -1
    If Cells(iCntr, 1) = 1 or trim(Cells(iCntr, 1)) = “” Then
        Rows(iCntr).Delete
    End If
Next
End Sub

Instructions to run the VBA code to delete rows based on multiple criteria


Please follow the below steps to execute the VBA code to delete rows based on multiple criteria from Excel worksheets.
Step 1: Open any Excel workbook
Step 2: Press Alt+F11 – This will open the VBA Editor
Step 3: Insert a code module from then insert menu
Step 4: Copy the above code and paste in the code module which have inserted in the above step
Step 5: Enter some sample data in first column from row 1 to 20, enter 1 and leave some blank cells for testing purpose.
Step 6: Now press F5 to execute the code

Now you can observe that the rows are deleted from worksheet if cells in Range A1 to A20 contains 1 or blank cells.

Explained VBA Code to Delete Rows based on multiple criteria


Strating program and sub procedure to write VBA code to delete rows based on multiple criteria.
Sub sbDelete_Rows_Based_On_Multiple_Criteria()

‘Declaring the variable lRow as long to store the last row number
Dim lRow As Long

‘Declaring the variable iCntr as long to use in the For loop
Dim iCntr As Long

‘Assigning the last row value to the variable lRow
lRow = 20

‘Using for loop
‘We are checking the each cell value if it contains value 1 or if cell is blank
‘And deleting the row if true
For iCntr = lRow To 1 Step -1
If Cells(iCntr, 1) = 1 or trim(Cells(iCntr, 1)) = “”Then
Rows(iCntr).Delete
End If
Next

End Sub
Ending the macro to delete the rows based on multiple criteria using VBA.
You can observe that we are looping through the cells from bottom to up. This is the best approach to delete the rows if based on multiple criteria.

Effortlessly Manage Your Projects and Resources
120+ Professional Project Management Templates!

A Powerful & Multi-purpose Templates for project management. Now seamlessly manage your projects, tasks, meetings, presentations, teams, customers, stakeholders and time. This page describes all the amazing new features and options that come with our premium templates.

Save Up to 85% LIMITED TIME OFFER
Project Management Templates

All-in-One Pack
120+ Project Management Templates

Essential Pack
50+ PM Templates

Excel Pack
50+ Excel PM Templates

PowerPoint Pack
50+ Excel PM Templates

MS Word Pack
25+ Word PM Templates

Ultimate Project
Management Template
Ultimate Resource
Management Template
Project Portfolio
Management Templates
Categories: VBATags: Last Updated: June 17, 2022

6 Comments

  1. MEGAN January 29, 2015 at 9:26 AM

    Thank you for the code. I would like to delete rows based on multiple criteria. Should look in column A and delete any rows with the value 1, column F with value 2 and column R with value 30. How should this code be modify to do that?

  2. PNRao February 3, 2015 at 10:01 PM

    Hi Megan,

    Please see the below code:

    Sub DeleteRowsBasedOnMultipleCriteria()
    
    lRow = 500 ' Your last row with the data
    
    Do While lRow >= 1
    
    '1=Column A,6=Column F, 18=Column R
     If Cells(lRow, 1) = 1 _
            Or Cells(lRow, 6) = 2 _
            Or Cells(lRow, 18) = 1 Then
            
            Rows(lRow).Delete
     End If
    
    lRow = lRow - 1
    Loop
    
    End Sub
    

    Hope this helps!
    Thanks-PNRao!

  3. Matt May 5, 2015 at 2:49 AM

    I want to delete a row based on criteria from 2 columns where both conditions must apply not either or. Could you help me write the code?

  4. julie July 21, 2015 at 4:20 PM

    I need help to delete the data that are not follow the list values in excel . I want to delete the last two rows doesn’t follow start with 45* follow 5 digits long thanks

    column
    45*0000
    45*12345
    23456432
    324567

  5. Pablo May 12, 2016 at 6:25 AM

    How will I implement this?

    I need to delete a row (Resource Name) in the Invoice file if the resource name is not found from another file (Resource Forecast)

  6. Connor May 28, 2020 at 8:51 PM

    Hey there – I need to delete rows based on multiple criteria from within the same column.

    Example: Column J, criteria to delete are “Invalid”, “Unknown”, and “Unverifiable”

    How would I modify this code to handle that?

    Thanks!

Leave A Comment