Automating a macro

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))
 
D

Dave Peterson

Worksheet functions can't start a macro, but there are events (worksheet_change
and worksheet_calculate) that might do what you want.
 
Top