Randomize
    For i = 1 To 1000
        Var = Rnd * 10
        If Var < 5 Then GoTo myNext
        'next instructions
myNext:
    Next i

or

    Randomize
    For i = 1 To 1000
        Var = Rnd * 10
        If Var >= 5 Then
            'next instructions
        End If
    Next i

Daniel

On 29 juil, 14:47, vivek agrawal <vivek.agrawa...@gmail.com> wrote:
> Hello Kumaran
> Exit For would completely exit from the for loop..
>
> i want it to skip the code for the current loop and iterate to the next loop
>
> Thanks and Regards,
> Vivek Agrawal
> Skype ID - vivek.agrawal83
>
> GoogleMoonlight.com  - Saving energy-Save Earth
>
> On Wed, Jul 29, 2009 at 4:45 PM, OfficeVba Trainer <
>
>
>
> officevbatrai...@yahoo.com> wrote:
> > Hi Vivek,
>
> > For intI=1 to 1000
>
> > ..........Statements
>
> > If intI=750 Then Exit For
>
> > Next
>
> > Let me know if u have any queriies.
> > Kumaran V
> > ++91 9873152622
> > Thanks and regards
> > Office VBA Trainer
> >http://officevbatrainer.blog.co.in
>
> >  ------------------------------
> > *From:* vivek agrawal <vivek.agrawa...@gmail.com>
> > *To:* excel-macros@googlegroups.com
> > *Sent:* Wednesday, July 29, 2009 4:24:22 PM
> > *Subject:* $$Excel-Macros$$ Escaping a foir loop
>
> > Hi ALL
> > Can anybody please tell me how to Escape a for loop ...
>
> > for ex... i am running a for loop for 1000 times.... at the starting of the
> > code in the loop, i am checking the value of a variable.... i want that if
> > the value the variable is below a particular limit, then the rest of the
> > code should not run and the next should be started...
>
> > i want the line of code which i should insert in the if....endif
> > statement....
>
> > its urgent.... can anybody please help me..
>
> > Thanks and Regards,
> > Vivek Agrawal
> > Skype ID - vivek.agrawal83
>
> > GoogleMoonlight.com <http://googlemoonlight.com/>  - Saving energy-Save
> > Earth- Masquer le texte des messages précédents -
>
> - Afficher le texte des messages précédents -
--~--~---------~--~----~------------~-------~--~----~
----------------------------------------------------------------------------------
Some important links for excel users:
1. Excel and VBA Tutorials(Video and Text), Free add-ins downloads at 
http://www.excelitems.com
2. Excel tutorials at http://www.excel-macros.blogspot.com
3. Learn VBA Macros at http://www.vbamacros.blogspot.com
4. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 

To post to this group, send email to excel-macros@googlegroups.com
If you find any spam message in the group, please send an email to:
Ayush Jain  @ jainayus...@gmail.com or
Ashish Jain @ 26may.1...@gmail.com
<><><><><><><><><><><><><><><><><><><><><><>
HELP US GROW !!

We reach over 5,200 subscribers worldwide and receive many nice notes about the 
learning and support from the group. Our goal is to have 10,000 subscribers by 
the end of 2009. Let friends and co-workers know they can subscribe to group at 
http://groups.google.com/group/excel-macros/subscribe
-~----------~----~----~----~------~----~------~--~---

Reply via email to