1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| Sub Macro1()
Dim plgA As Range, plgB As Range, c As Range
Dim listA(), listB()
Dim i As Integer, xa As Integer, xb As Integer, col As Integer
Set plgA = Sheets("Liste").Range("A2:A" & Sheets("Liste").Range("A65536").End(xlUp).Row)
Set plgB = Sheets("Inscrits").Range("A2:A" & Sheets("Inscrits").Range("A65536").End(xlUp).Row)
col = Sheets("Liste").Range("IV1").End(xlToLeft).Column
For Each c In plgA
'CONCATENER les Noms et prénoms de la feuille "Liste"
With Sheets("Liste")
ReDim Preserve listA(xa)
listA(xa) = .Cells(c.Row, 1) & .Cells(c.Row, 2)
End With
xa = xa + 1
Next
For Each c In plgB
'CONCATENER les Noms et prénoms de la feuille "Inscrits"
With Sheets("Inscrits")
ReDim Preserve listB(xb)
listB(xb) = .Cells(c.Row, 1) & .Cells(c.Row, 2)
End With
xb = xb + 1
Next
'vérifier si chaque item de listA est présent dans listB
'si non présent, copie les données correspondantes de la feuille liste sur la feuille résultat en commencant à la
'ligne 2
For i = 0 To UBound(listA)
If IsError(Application.Match(listA(i), listB, 0)) Then
With Sheets("Liste")
Set MaPlage = .Range(.Cells(2 + i, 1), .Cells(2 + i, col))
End With
MaPlage.Copy Sheets("résultat").Range("A" & 2 + x)
x = x + 1
End If
Next i
Set plgA = Nothing
Set plgB = Nothing
Set MaPlage = Nothing
End Sub |
Partager