For jj = 2 To UBound(sp)
  If sn(j, 3) = sp(jj, 1) Then Exit For
Next
If the value in column 3 in the row j of array sn is identical to the value in column 1 of row jj in Array sp, then stop the loop.
Als de waarde van kolom 3 in rij j van Array sn gelijk is aan de waarde van kolom in rij jj van Array sp, stop dan het zoeken.