Application.AlertBeforeOverwriting = False

  • Thread starter Thread starter Aristotele64
  • Start date Start date
A

Aristotele64

Hi,
i want to set

Application.AlertBeforeOverwriting = False



for ONE FULL worksheet ......



ho do it ???



TIA
 
If I understand you correct

Use this events in the Sheet module of the sheet

Private Sub Worksheet_Activate()
Application.AlertBeforeOverwriting = False
End Sub

Private Sub Worksheet_Deactivate()
Application.AlertBeforeOverwriting = True
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top