Hallo,
eine kleine Ergänzung, dadurch ist es egal wo "Titre" und "Avis" steht, das Programm such sich selbst die Spalte
Sub CentralAvis()
Application.ScreenUpdating = False
Cells.EntireRow.Hidden = False
Sheets("Centrale Avis").Select
For i = 1 To Range("IV5").End(xlToLeft).Column
If Cells(5, i).Value = "Titre" Then Spalte_T = i
If Cells(5, i).Value = "Avis" Then Spalte_A = i
Next i
For i = 6 To Range("A65536").End(xlUp).Row
If (Cells(i, Spalte_T).Value = "" Or Cells(i, Spalte_T).Value = "0") And (Cells(i, Spalte_A).Value = "" Or Cells(i, Spalte_A).Value = "0") Then Rows(i).Hidden = True
Next i
Application.ScreenUpdating = True
End Sub
Gruß
Helmut