Sub CopieSaufFormules1()
For Ligne = 6 To 123
If Left(Cells(Ligne, "AF").Formula, 1) <> "=" Then
Cells(Ligne, "AF") = Cells(Ligne, "I")
End If
Next Ligne
End Sub
OU
Sub CopieSaufFormules2()
For Ligne = 6 To 123
If Not Cells(Ligne, "AF").HasFormula Then
Cells(Ligne, "AF") = Cells(Ligne, "I")
End If
Next Ligne
End Sub