Halt Operation Macro

bschulze

Active Member
Joined
Jun 2, 2005
Messages
289
I am creating a macro to open a file (Worksheet A) in a particular folder and then from there I am copying the worksheet A into the worksheet with the macro. There will be times were this file WILL NOT be present in that folder. When this is the case I want the macro to END SUB and not ERROR. I am not sure how to write this. I am pretty sure it is very basic however I am just getting back into Macros. A little help would be greatly appreciated.

Thanks
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
On Error Resume Next
'Your code that accesses the file goes here
If Err.Number <> 0 then End
On Error Goto 0
 
Upvote 0

Forum statistics

Threads
1,206,814
Messages
6,075,023
Members
446,114
Latest member
FadDak

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