Autofilter to stop if blank

vmjan02

Well-known Member
Joined
Aug 15, 2012
Messages
1,057
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2016
  5. 2013
I have the code below and is all good if the autofilter find's the data, but is there a way to shop the code if autofilter is blank. In this case if autofilter don't find "Ten"


Sheets("Sheet2").Select
Range("b4").Select
ActiveSheet.Range("$B$4:$AN$50000").AutoFilter Field:=35, Criteria1:="Ten"
Range("b4").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheets("Eamil-10").Select
Range("a1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Call column
Call Line
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Re: Autofiler to stop if blank

How about
Code:
Dim usdRws As Long
With Sheets("Sheet2")
   If .AutoFilterMode Then .AutoFilterMode = False
   usdRws = Range("B" & Rows.count).End(xlUp).Row
   .Range("B4:AN" & usdRws).AutoFilter Field:=35, Criteria1:="Ten"
   If .Range("B" & Rows.count).End(xlUp).Row = 4 Then Exit Sub
   .Range("B4:AN" & usdRws).Copy Sheets("Eamil-10").Range("a1")
End With
Call Column
Call Line
 
Upvote 0
Re: Autofiler to stop if blank

cool, this worked all well, but hw abt the next step

ActiveSheet.Range("$B$4:$AN$50000").AutoFilter Field:=36, Criteria1:="Hundred"
Range("b4").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Sheets("Email-100").Select
Range("a1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Call column
Call Line
 
Upvote 0
Re: Autofiler to stop if blank

Simply rewrite that the same way as I did for "Ten"
 
Upvote 0
Re: Autofiler to stop if blank

did the same, but once the Exit sub is done for "Ten", it don't goes for "Hundred"

Code
Dim usdRws As Long
With Sheets("Sheet2")
If .AutoFilterMode Then .AutoFilterMode = False
usdRws = Range("B" & Rows.Count).End(xlUp).Row
.Range("B4:AN" & usdRws).AutoFilter Field:=35, Criteria1:="Ten"
If .Range("B" & Rows.Count).End(xlUp).Row = 4 Then Exit Sub --- here the code ends.
.Range("B4:AN" & usdRws).Copy Sheets("Eamil-10").Range("a1")
End With
Sheets("Eamil-10").Select
Call column
Call Line

Sheets("Sheet2").Select
Range("b4").Select
ActiveSheet.Range("$B$4:$AN$50000").AutoFilter Field:=35
Selection.AutoFilter




Sheets("Sheet2").Select
Dim usdRw As Long
With Sheets("Sheet2")
If .AutoFilterMode Then .AutoFilterMode = False
usdRw = Range("B" & Rows.Count).End(xlUp).Row
.Range("B4:AN" & usdRw).AutoFilter Field:=36, Criteria1:="Hundred"
If .Range("B" & Rows.Count).End(xlUp).Row = 4 Then Exit Sub
.Range("B4:AN" & usdRw).Copy Sheets("Email-100").Range("a1")
End With
Sheets("Email-100").Select
Call column
Call Line
 
Upvote 0
Re: Autofiler to stop if blank

Is this what you want?
Code:
Dim UsdRws As Long
With Sheets("Sheet2")
   If .AutoFilterMode Then .AutoFilterMode = False
   UsdRws = Range("B" & Rows.count).End(xlUp).Row
   .Range("B4:AN" & UsdRws).AutoFilter Field:=35, Criteria1:="Ten"
   If .Range("B" & Rows.count).End(xlUp).Row > 4 Then
      .Range("B4:AN" & UsdRws).Copy Sheets("Eamil-10").Range("a1")
      .AutoFilterMode = False
      Call Column
      Call Line
   End If
   .Range("B4:AN" & UsdRws).AutoFilter Field:=36, Criteria1:="Hundred"
   If .Range("B" & Rows.count).End(xlUp).Row > 4 Then
      .Range("B4:AN" & UsdRws).Copy Sheets("Email-100").Range("a1")
      .AutoFilterMode = False
      Call Column
      Call Line
   End If
End With
 
Upvote 0
Re: Autofiler to stop if blank

Hi, Thanks. did some modification and all is good now.

Dim UsdRws As Long
Sheets("sheet2").Select
With Sheets("Sheet2")
If .AutoFilterMode Then .AutoFilterMode = False
UsdRws = Range("B" & Rows.Count).End(xlUp).Row
.Range("B4:AN" & UsdRws).AutoFilter Field:=35, Criteria1:="Ten"
If .Range("B" & Rows.Count).End(xlUp).Row > 4 Then
.Range("B4:AN" & UsdRws).Copy Sheets("Eamil-10").Range("a1")
.AutoFilterMode = False
Sheets("Eamil-10").Select
Call column
Call Line
End If
Sheets("sheet2").Select
With Sheets("Sheet2")
If .AutoFilterMode Then .AutoFilterMode = False
UsdRws = Range("B" & Rows.Count).End(xlUp).Row
.Range("B4:AN" & UsdRws).AutoFilter Field:=36, Criteria1:="Hundred"
If .Range("B" & Rows.Count).End(xlUp).Row > 4 Then
.Range("B4:AN" & UsdRws).Copy Sheets("Email-100").Range("a1")
.AutoFilterMode = False
Sheets("Email-100").Select
Call column
Call Line
End If
End With
End With
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

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