Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / Programming / March 2006

Tip: Looking for answers? Try searching our database.

For next index

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
David Henderson - 22 Mar 2006 09:14 GMT
The code below has a for next loop in it
how can I find out the "position" , ie is it the first time through the
loop, the last or the "n" th time through the loop.
I would be most gratefull if someone could enlighten me
Thanks in advance
David

no_values = True
Dim thecells As Range
For Each thecells In Range("quantity_range")
   If thecells.Value <> 0 Then
       no_values = False
   End If
Next
paul.robinson@it-tallaght.ie - 22 Mar 2006 10:25 GMT
Hi

no_values = True
marker = 0
Dim thecells As Range
For Each thecells In Range("quantity_range")
   marker = marker + 1
   If thecells.Value <> 0 Then
       no_values = False
   End If
If no_values = False then Exit for
Next
msgbox "Loop was exited on iteration " & marker

regards
Paul
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.