"indytoatl" <indytoatl@xxxxxx> wrote in message
news:309317d1-c60f-4a75-9c5a-de0e7c40b607@xxxxxx
Quote:
> How do I exit a "For Each" statement
You exit a for statement with an exit for statement...
Quote:
> once the value is found I was
> searching for? I'm searching thru a group of folders for a particular
> folder name. Once I find it I'd like to exit the search. Thanks
found = false
for each item in list
if item = "whatever" then
found = true
exit for
end if
next
if found then
wscript.echo "found it!"
else
wscript.echo "it's not there!"
end if
/Al