rerunning a macro for a cerrtain number of times

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
 
O

Otto Moehrbach

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top