View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
MSweetG222 MSweetG222 is offline
external usenet poster
 
Posts: 158
Default How can I repeat a macro, and how can make it without any message?

Emil -

Without knowing more - here is a way:


Sub MyLoop
For c = 1 to 50
Call <insert your procedure name here
Next c
End Sub


This will run your code 50 times. Change the 50 above to 100 and it will
loop thru your code 100 times.

--
Thx
MSweetG222



"emil" wrote:

Thanks for any helps
Emil