ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Delete Sheet w/o warning prompt... (https://www.excelbanter.com/excel-programming/372497-delete-sheet-w-o-warning-prompt.html)

Jeff Harbin[_4_]

Delete Sheet w/o warning prompt...
 
I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks

Die_Another_Day

Delete Sheet w/o warning prompt...
 
Application.DisplayAlerts = False
Sheets("YourSheet").Delete
Application.DisplayAlerts = True

Charles Chickering

Jeff Harbin wrote:
I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks



Jim Thomlinson

Delete Sheet w/o warning prompt...
 
application.enablealerts = false
'delete your sheet
application.enablealerts = true
--
HTH...

Jim Thomlinson


"Jeff Harbin" wrote:

I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks


Jim Thomlinson

Delete Sheet w/o warning prompt...
 
application.displayalerts not enablealerts... Sorry. I must be losin' it...

application.displayalerts = false
'Delete your sheet
application.displayalerts = true
--
HTH...

Jim Thomlinson


"Jim Thomlinson" wrote:

application.enablealerts = false
'delete your sheet
application.enablealerts = true
--
HTH...

Jim Thomlinson


"Jeff Harbin" wrote:

I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks


Jeff Harbin[_4_]

Delete Sheet w/o warning prompt...
 
Thanks all. That worked.



"Jeff Harbin" wrote:

I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks


Tom Ogilvy

Delete Sheet w/o warning prompt...
 
Application.Displayalerts = False
worksheets("TempData").Delete
Application.Displayalerts = True

--
Regards,
Tom Ogilvy


"Jeff Harbin" wrote:

I've got a project that uses a Master workbook and subsequently copies a
worksheet from 1 of 10 different workbooks, runs some calculations on the
summary, and then deletes the worksheet that I rename 'TempData'. I rename
the imported sheet 'TempData' to maintain consistency in the code since the
data compilation is the same for each of the 10 different sheets imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that any
data on that sheet will be lost and am I sure I want to delete this sheet.

That makes an long automated process required user interaction 10 times to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks


GKeramidas

Delete Sheet w/o warning prompt...
 
one of those days, huh jim<g

--


Gary


"Jim Thomlinson" wrote in message
...
application.displayalerts not enablealerts... Sorry. I must be losin'
it...

application.displayalerts = false
'Delete your sheet
application.displayalerts = true
--
HTH...

Jim Thomlinson


"Jim Thomlinson" wrote:

application.enablealerts = false
'delete your sheet
application.enablealerts = true
--
HTH...

Jim Thomlinson


"Jeff Harbin" wrote:

I've got a project that uses a Master workbook and subsequently copies
a
worksheet from 1 of 10 different workbooks, runs some calculations on
the
summary, and then deletes the worksheet that I rename 'TempData'. I
rename
the imported sheet 'TempData' to maintain consistency in the code since
the
data compilation is the same for each of the 10 different sheets
imported.

I've got it set up so that it will copy the sheet over to the Master
workbook and run the calculations and then Delete the imported sheet
'TempData'.

The problem I'm experiencing is that I get the prompt telling me that
any
data on that sheet will be lost and am I sure I want to delete this
sheet.

That makes an long automated process required user interaction 10 times
to
acknowledge the deletion of the 'TempData' sheet.

Can I force EXCEL to delete the sheet w/o the warming prompt?

Thanks




All times are GMT +1. The time now is 05:43 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com