Cell value

S

steve

Hi all


I have a value in cell A1 of 1
now i want to run various macroes
then i want the value to A1 to increase by 1 to 2
then run the same macros
and so on and son on

when the value of A1 is 260 then stop



any idea's on this one please


cheers



Steve
 
D

Don Guillett

I'm not sure I understand. Why not just use

for i = 1 to 260
call mymacro
call mymacro1
next i
 
Top