Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo Fin
If Not Intersect(Target, Range("Y2:Y500")) Is Nothing Then
DerLig = Range("B65500").End(xlUp).Row
For i = 2 To DerLig
Nom = Cells(i, 3) & " " & Cells(i, 4)
IndexW = Application.Match(Nom, Sheets("Adhésions 2020").Range("B1:B500"), 0)
Sheets("Adhésions 2020").Cells(IndexW, 6) = Cells(i, 25)
Next i
End If
Fin:
End Sub