D David W Apr 8, 2005 #1 How would you loop through the field [washed] in each record using the single form mode, not continious?
How would you loop through the field [washed] in each record using the single form mode, not continious?
K Ken Snell [MVP] Apr 8, 2005 #2 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
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