On error resume next find?

butters149

New Member
Joined
Mar 21, 2018
Messages
23
Hello,

I have the small pasted VBA below. I was wondering what code can I add in so that if it cannot find, it will move onto the next find? Thanks!

Dim rngName As Range
Set rngName = Range("L1:CA1").Find("Name")
Range(rngName, rngName.End(xlDown)).Select
Selection.Delete Shift:=xlToLeft

Dim rngApp As Range
Set rngApp = Range("L1:L1").Find("Approved")
Range(rngApp, rngApp.End(xlDown)).Select
Selection.Delete Shift:=xlToLeft
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
  Dim rFind As Range

  Set rFind = Range("L1:CA1").Find("Name")
  If Not rFind Is Nothing Then Range(rFind, rFind.End(xlDown)).Delete Shift:=xlToLeft

  Set rFind = Range("L1:L1").Find("Approved")
  If Not rFind Is Nothing Then Range(rFind, rFind.End(xlDown)).Delete Shift:=xlToLeft
 
Upvote 0
Code:
  Dim rFind As Range

  Set rFind = Range("L1:CA1").Find("Name")
  If Not rFind Is Nothing Then Range(rFind, rFind.End(xlDown)).Delete Shift:=xlToLeft

  Set rFind = Range("L1:L1").Find("Approved")
  If Not rFind Is Nothing Then Range(rFind, rFind.End(xlDown)).Delete Shift:=xlToLeft

Thanks!
 
Upvote 0

Forum statistics

Threads
1,225,626
Messages
6,186,089
Members
453,336
Latest member
Excelnoob223

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