calculate(f9) event at workbook level?

A

avi

hello,

Is the such an event at the workbook level and not only at a sheet level?

I want the event fired independently of the active sheet

Thanks

Avi
 
P

Paga Mike

avi;1605234 said:
hello,

Is the such an event at the workbook level and not only at a shee
level?

I want the event fired independently of the active sheet

Thanks

Avi

You need:
Ctrl-Alt-Shift-F9
This is the equivalent of:

Application.CalculateFull
in VBA

It re-calculates ALL open workbook
 
A

avi

You need:
Ctrl-Alt-Shift-F9

This is the equivalent of:



Application.CalculateFull

in VBA


It re-calculates ALL open workbooks


Paga Mike

Thanks Mike, but I am looking at firing the F9 at the workbook (something as Workbook_Calculate...)

Avi
 
J

joeu2004

avi said:
Is the such an event at the workbook level and not
only at a sheet level?
I want the event fired independently of the active sheet

There is the Workbook_SheetCalculate event macro.

It is called after __each__ worksheet is recalculated -- and after that
worksheet's Worksheet_Calculate event macro is called, if any.

So it is called multiple times when we press ctrl+alt+F9, for example.

That might not meet your needs if you want an event that is called only once
after __all__ worksheets are recalculated.
 

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

Top