Merci, cela ne marche pas pour ma formule. Je voulais appliquer ce code :
Sub Resultats_fix()
Dim sht As Object
Dim Rng As Object
Dim Cellule As Range
For Each sht In ActiveWorkbook.Sheets
Set Rng = sht.UsedRange
For Each Cellule In Rng
If Cellule.HasFormula Then
Cellule.Formula = Cellule.Value
End If
Next Cellule
Next sht
End Sub