macros and if statements

R

Rebecca

Can I use an IF statement to run a macro, i.e if this then run macro otherwise do nothing
 
M

mudraker

Rebecca

you can use if statements in a macro to call another macro

if range("a1") = true then
call mymacro
end i
 
Top