How do I use a for/next loop to preform the same actions to every.

  • Thread starter Thread starter Guest
  • Start date Start date
LOL!

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Hi

That is what a for next loop does by default unless you change something
with conditions within the loop. What are you trying to do?

For i = 1 to 5
msgbox("Hi")
Next i

will do the same thing 5 times in a row.

Ken
 

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

Back
Top