Sub remplace()
Dim C As Range, Sh As Worksheet
For Each C In Feuil2.Range("a1:a" & Feuil2.Cells(Feuil2.Rows.Count, "A").End(xlUp).Row)
For Each Sh In ThisWorkbook.Worksheets
If Sh.Name <> "Table" Then
Sh.Cells.Replace C, C.Offset(, 1)
End If
Next
Next
MsgBox "Remplacement terminé", vbInformation, "Information"
End Sub