View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
GKeramidas GKeramidas is offline
external usenet poster
 
Posts: 38
Default 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