VBA overlapping error

VbaHell

Well-known Member
Joined
Jan 30, 2011
Messages
1,220
Hello all

I keep getting an error on this code and I can't figure out why

"It's error 1004 Cannot use that command on overlapping selection"

The code filters on column "N" and only shows lines not equal to "C2" on sheet 5, this is working ok
But when it comes to delete the visible lines I get the error code

Code:
 Sheets("Data").Select
    Range("A1").Select
    
    With Sheets("Data")
      lr = .Range("N" & Rows.Count).End(xlUp).Row
      If .AutoFilterMode Then .AutoFilterMode = False
      Intersect(.UsedRange, .Range("N:N")).AutoFilter 1, "<>" & Sheet5.Range("C2").Value
     [I][B] .Range("A2:AB" & lr).SpecialCells(xlVisible).EntireRow.Delete[/B][/I]
      .AutoFilterMode = False
   End With
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Code:
End If
End With
End Sub


Im missing an End If in your code. the end sub is only if you started with Sub but im not seeing it so idk. but you should close your if
 
Last edited:
Upvote 0
Also do you have any hidden columns?
 
Upvote 0

Forum statistics

Threads
1,216,119
Messages
6,128,941
Members
449,480
Latest member
yesitisasport

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