Function RenvoiResultat(Choix As Range, Plage As Range)
t = Plage
c = Choix.Interior.ColorIndex
For i = 13 To UBound(t)
If t(i, 1).Interior.ColorIndex = c Then RenvoiResultat = RenvoiResultat & Chr(10) & t(i, 2)
Next i
RenvoiResultat = Mid(RenvoiResultat, 2)
End Function