RE: cutting sheets and saving as

cart0250

Active Member
Joined
Jun 24, 2006
Messages
284
Office Version
  1. 2016
Platform
  1. Windows
RE: cutting sheets and saving as

Part of my code involves deleting sheets from a workbook:

Sheets("gh SHEET").Delete
Sheets("jf SHEET").Delete

When it executes, the macro will stop for excel to prompt the user, saying "data may exist in the sheets selected for deletion. To permanently delete the data, press delete." Is there a way to either prevent this message from coming up to automically select the delete option?

A similar question when saving a file. If you "save as" on top of another file, Excel will break in with a prompt asking are you sure, etc. Can you override this prompt so the user will not have to click yes?


ChDir "R:\MIN_SLB\MPLS_OC_Crew\Choices"
ActiveWorkbook.SaveAs Filename:= _
"R:\MIN_SB\MLSrew\Choices\ENGR Preferences.xls", FileFormat:= _
xlNormal


Sheets("GL SHEET").Delete
Sheets("SU SHEET").Delete
 

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.
Hi

Have a look at displayalerts

application.displayalerts = false
and then turn on when finished
application.displayalerts = true


HTH

Tony
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,699
Members
449,048
Latest member
81jamesacct

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