Bonjour je ne vois pas où se pose le problème merci beaucoup
Sub Modif()
Dim Cel As Range, Cel2 As Range
Set Cel = Range("B4:GK118" )
For Each Cel2 In Cel
If Cel2 = "#N/A" Then
Cel2 = Cells(Cel2.Row + 1, Cel2.Column)
'Sheet.Select
End If
Next
End Sub