TRIGERRING A CALCULATION

  • Thread starter Thread starter FARAZ QURESHI
  • Start date Start date
F

FARAZ QURESHI

MVP Biff informed me a while ago that inserting a sheet does not trigger a
calculation while deleting a sheet does so. Could there be anyway/code to
trigger such a calculation upon the event of inserting a new sheet like "New
Sheet Eevent"?

Kindly provide a code.

Once again,

Thanx Biff!
 
Hi,

There's a workbook event. Open vb editor, double click this workbook and
paste this in

Private Sub Workbook_NewSheet(ByVal Sh As Object)
Application.Calculate
End Sub

Mike
 

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