Return to the front of a loop.

  • Thread starter Thread starter PJFry
  • Start date Start date
P

PJFry

I have a block of code that loops through two recordsets and performs
updates. The first recordset compares data to the second recordset. There
are times when the second recordset reaches EOF before the first does. To
capture that event, I do a Dlookup to determine if any data remains in the
table that will fill the second recordset. If no data exists, I want to
return to the top of the loop to select data for a new first and second
recordset.


Here is a high level look:

Do Until rs.EOF
If IsNull(DLookup("exp_item_cd","tTags","exp_item_cd Is Not Null AND
merchant_cd = '" & curMer & "'")) Then
*Start over at the top of the loop*
End if

Assuming that the DLookup is not null, the loop continues here.
Loop


How can I do this?

Thanks!

PJ
 
Back
Top