Sub foreachmarchepas()
Dim Cellule As Range
For Each Cellule In Range("A1:J100")
If Left(ActiveCell.Formula, 7) = "=Dosssi" Or Left(ActiveCell.Value, 7) = "=Adress" Or Left(ActiveCell.Value, 7) = "=Codepo" Or Left(ActiveCell.Value, 7) = "=TEXTE(" Or Left(ActiveCell.Value, 7) = "=SI(Cré" Or Left(ActiveCell.Value, 7) = "=SI(Déb" Or Left(ActiveCell.Value, 7) = "=Crédit" Or Left(ActiveCell.Value, 6) = "=Débit" Then
ActiveCell.Copy
ActiveCell.PasteSpecial Paste:=xlPasteValues
End If
MsgBox ActiveCell.Address
Next Cellule
End Sub