AFTER Calculate Event

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

After my worksheets have been calculated, I need to display a message box
with particular information.

Went to the VBA code sheet for my worksheets, but there is no AFTERCalculate
event listed.

I know sometimes not all events are listed, IS there a aftercalculate event
available for me to use (either worksheet or workbook level).

Tanx.
 
John,

As far as I know there is no 'AfterCalculate' event.

Why not calculate the worksheet then have your processing code immediately
after that? That way you ensure that the worksheet has been calculated
prior to your code running. For example...

Calculate
your code here

Hope that helps,
Gary Brown
 

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