Sub Suppr_mp3_fonctionne_pas()
Cells.Replace "*mp3*", "#N/A", MatchCase:=True
If Application.CountIf(Cells, "#N/A") Then Cells.SpecialCells(xlCellTypeConstants, 16).EntireRow.Delete
End Sub
Sub Suppr_mp3_fonctionne()
Cells.Replace "*mp3*", "#N/A", MatchCase:=True
If Application.CountIf(Cells, "#N/A") Then Intersect(Cells, Cells.SpecialCells(xlCellTypeConstants, 16).EntireRow).Delete
End Sub
Sub RAZ()
[C4] = "mp3"
[E4] = "xxxmp3"
[G4] = "yyymp3zzz"
End Sub