delete row from VBA

amkumar

New Member
Joined
Apr 5, 2016
Messages
45
Hi,

how can i delete used range in excel after apply filter, without header (First row).
i want to do this in VBA.

thanks
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Post the code that you have currently for applying the filter.
 
Upvote 0
ActiveSheet.Range("A1").AutoFilter field:=1, Criteria1:="UC"

data contain 3-4 criteria and i only want to delete all rows of UC.
 
Upvote 0
Try...

Code:
Sub Filterit()
    With Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
        .AutoFilter Field:=1, Criteria1:="UC"
        
        On Error Resume Next
        .Offset(1).Resize(.Rows.Count - 1).SpecialCells(xlCellTypeVisible).EntireRow.Delete
        On Error GoTo 0
        .AutoFilter
    
    End With
End Sub
 
Upvote 0
Based on your descriptions so far, this should also work for you.

Rich (BB code):
Sub amkumar()
  Range("A1").AutoFilter field:=1, Criteria1:="UC"
  ActiveSheet.UsedRange.Offset(1).EntireRow.Delete
  ActiveSheet.AutoFilterMode = False
End Sub

.. or if you want the AutoFilter arrow(s) left in place, make this change to the above code
Rich (BB code):
<del>ActiveSheet.AutoFilterMode = False</del>
Range("A1").AutoFilter field:=1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,534
Messages
6,114,186
Members
448,554
Latest member
Gleisner2

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