For Each

D

David W

How would you loop through the field [washed] in each record using the
single form mode, not continious?
 
K

Ken Snell [MVP]

The choice of view for the form is not important for how you do this. It's
done the same way:

With Me.RecordsetClone
.MoveFirst
Do While .EOF = False
Debug.Print .Fields("washed").Value
.MoveNext
Loop
End With
 

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