PDA

View Full Version : Solved: moltyply times



oleg_v
04-09-2010, 05:26 AM
hi

how can i make a macro to run several times in a row one after another

say for example 10 times


thanks

mdmackillop
04-09-2010, 05:49 AM
For i = 1 to 10
Call MyMacro
Next

Bob Phillips
04-09-2010, 07:34 AM
Why not just put a For 1 to 10 loop in the macro.