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

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
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,214,395
Messages
6,119,265
Members
448,881
Latest member
Faxgirl

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