VBA if filter has no data then

Revathi Kannan

New Member
Joined
Jan 27, 2012
Messages
23
Hi all,

Can someone assist me on the below.

> I need to filter the data in column B apart from blanks and delete the entire row.
> If no data found while filtering then i need to release the filters and move on to the next subroutine.

Please assist me that how to implement If condition in auto filter using VBA.
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Hello Revathi Kannan
Code:
Sub a()
Dim r As Range
With Worksheets("code")
Range("$A$1:$BE$10").AutoFilter Field:=28, Criteria1:="<>"
Set r = Range("$A$1:$BE$10").SpecialCells(xlVisible)
If r Is Nothing Then
Call subroutine
Exit Sub
End If
End With
End Sub
(y)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,626
Messages
6,125,896
Members
449,271
Latest member
bergy32204

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