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

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
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,215,601
Messages
6,125,758
Members
449,259
Latest member
rehanahmadawan

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