Automating a macro

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Is there a way to automate a macro based upon what I type
into a cell? (i.e. using an IF/THEN statement...=IF
(A1=1,macro1,false))
 
Worksheet functions can't start a macro, but there are events (worksheet_change
and worksheet_calculate) that might do what you want.
 
Back
Top