Hallo Frank,
Danke erst mal für deine Zeit :-)
Das mit dem AND hab ich mir auch schon gedacht und habs deshalb mit 2 schleifen versucht
do while not oRs.EOF
do while oRs.fields("Bundesland") = oRs2.Fields("Bundesland")
....
loop
loop
brachte aus irgendeinem grunde timeouts
danach hab ichs dann per
do while not oRs.EOF
.....
loop until oRs.Fields("Bundesland") <> oRs2.Fields("Bundesland")
versucht aber resultat war genau wie eingangs am ende des RS fehler
netghost