For Each CellCible In PlageCible
For Each CellSource In PlageSource
If CellCible = CellSource Then
If CellSource.Offset(0, 1) = "O" Then
CellCible.Offset(0, 1) = "O"
ElseIf CellSource.Offset(0, 1) = "N" Then
CellCible.Offset(0, 1) = "N"
Else
CellCible.Offset(0, 1) = "Relancer"
End If
End If
Next CellSource
Next CellCible