launch macro from a formula

  • Thread starter Thread starter arron
  • Start date Start date
arron said:
Can this be done?

I want to launch various macros from the result of an IF.

Cheers

Arron

No. Launching a macro is an event - it happens at a particular time. The
result of an IF is a state - it stays the same (until such time as a change
in the conditions causes it to change). So, you can't do as you ask. I
believe you need a worksheet change event in VBA.
 
Back
Top