Sub Remplace()
Dim i As Integer, Modèle As String, Libellé As String
For i = 1 To 11
Modèle = Cells(i, 1)
Libellé = Cells(i, 2)
Selection.Replace What:=Modèle, Replacement:=Libellé, LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2
Next i
End Sub