Won´t stop prompt when deleting sheet

kharboe78

New Member
Joined
Feb 12, 2023
Messages
2
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hi

I´m basicly using a code like this:

Sub SheetEraser()
Application.DisplayAlerts = False
Sheets("Sheet7").Delete
Application.DisplayAlerts = True
End Sub

But it still prompt when deleting the sheet.

Even as a single sub.

Almost gives up now. Hope somone can help.
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Go into immediate window Ctrl +G
Enter
?Application.EnableEvents
If it's false enter
Application.EnableEvents = TRUE
 
Upvote 0
Hi

I´m basicly using a code like this:

Sub SheetEraser()
Application.DisplayAlerts = False
Sheets("Sheet7").Delete
Application.DisplayAlerts = True
End Sub

But it still prompt when deleting the sheet.

Even as a single sub.

Almost gives up now. Hope somone can help.
The code that you have provided works perfectly on my machine. I know that this is lame, but, have you tried closing and reopening the workbook and running the Sub?
 
Upvote 0
Rebooted with no luck.

Wrote the same code again and it worked. So strange.

Thanks for the time .👍
 
Upvote 0
Solution

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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