Am using a For Each Row on one DataTable, to iterate through each row of another DataTable (2 nested For Each Row). Once i have a match with row from dtb1 with a row on dtb2 (based on variables from each, extracted via Get Row Items), i don’t need to keep looking for matches in dtb2, but rather move onto the next row in dtb1 and look for new matches in dtb2 with new row info.
QUESTION: How would i stop the For each row search and move to next row (dtb1) once once variables are found (row in dtb2), instead of wasting time going through rest of rows in dtb2, looking for something that has already matched?