Deleting specific rows with VBA

Mr2017

Well-known Member
Joined
Nov 28, 2016
Messages
644
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi Guys

I have data in two columns and would like to delete data in the second column which has the letter 'N' in it, using the auto filter.

The amount of rows will vary.

In the example below, there are only 5 rows and I would like to delete rows 3 and 4, as they're the rows with the letter 'N'.

Does anyone know how to do this?

TIA

NumberLetter
1Y
2N
3N
4Y

<colgroup><col width="64" span="2" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
The following macro assumes that the sheet containing the data is the active sheet...

Code:
Sub Delete_N_Rows()

    With ActiveSheet.UsedRange
        .AutoFilter field:=2, Criteria1:="N"
        .Offset(1, 0).EntireRow.Delete
        .AutoFilter
    End With
    
End Sub

Hope this helps!
 
Upvote 0
Hi,

You are right ...Using AutoFilter is indeed the best solution ...

Once you have filtered your database, you can set a new range with SpecialCells(xlCellTypeVisible) ...

which allows you to delete these rows ...

Hope this will help
 
Upvote 0
Awesome!

Thank you very much Domenic
user-online.png
!

I was in the middle of testing a complicated version suggested on youtube, where they'd declared lots of variables, and it wasn't working, so this solution is much appreciated! It's much more efficient!!

Thanks again!
 
Upvote 0
Mr2017,

Here is another macro solution for you to consider.

Code:
Sub DeleteColumnB_N()
' https://www.mrexcel.com/forum/excel-questions/1113838-deleting-specific-rows-vba.html
Dim Addr As String
Addr = Range("B1", Cells(Rows.Count, "B").End(xlUp)).Address
Range(Addr) = Evaluate(Replace("IF(ISNUMBER(SEARCH(""N"",@)),""#N/A"",@)", "@", Addr))
Columns("B").SpecialCells(xlConstants, xlErrors).EntireRow.Delete
End Sub
 
Upvote 0
Code:
Sub Delete_N_Rows()

    With ActiveSheet.UsedRange
        .AutoFilter field:=2, Criteria1:="N"
        .Offset(1, 0).EntireRow.Delete
        .AutoFilter
    End With
    
End Sub

Hi, Domenic. Thanks for the code.
I just realize that we can delete only visible cell in a filter range without needing to use specialCells(xlCellTypeVisible) and also using UsedRange is a nice trick. :)
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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