Sub masquer_ligne_vide_TEST2()
Dim Cel As Range
Dim I As Byte
For I = 6 To 13
For Each Cel In Range(Cells(I, 2), Cells(I, 63))
If Cel.Value <> "" And Cel.Value <> 0 Then GoTo suite1
Next Cel
Rows(I).Hidden = True
suite1:
Next I
For I = 16 To 19
For Each Cel In Range(Cells(I, 2), Cells(I, 63))
If Cel.Value <> "" And Cel.Value <> 0 Then GoTo suite2
Next Cel
Rows(I).Hidden = True
suite2:
Next I
End Sub