1st macro run then 2 macro is run

K

kalpesh

Hello

my worksheet1 contain 2 macro name (1)addrecord (2)prin

now , i want if first addrecord macro is run then print macro is ru
otherwise message is shown first addrecord is ru
e.g. print record do not run without run addrecor

how possible that
 
D

Don Guillett

sub addrecord()
do stuff
call print
end sub
or
put your print macro block in the 1st macro
 
Top