rerunning a macro for a cerrtain number of times

  • Thread starter Thread starter Chuck
  • Start date Start date
C

Chuck

Hi,

I'm looking for hello to run a macro a certain number of times, based on a
number that I put in a certain cell, Any suggestions? Thanks

Chuck
 
Something like this maybe:
Dim MyNum as long
Dim c as long
MyNum = Range("A1").Value
For c = 1 to MyNum
'Your macro code
Next
 
Back
Top