Consider the following:
While Not (rst.EOF) '1 do somthing here '2 do something else here If rst.Field = "X" Then 'go to the next record without doing any of the next steps End If '3 do a step here '4 do another step here rst.next Wend
How can I go to the next record without having steps 3 & 4 executed when the “IF” condition is met?
Thanks!