Bonjour et bienvenu sur Excel Pratique
Un fichier est TOUJOURS le bienvenu
Pour mettre du code utilisez </>
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address <> "$C$11" Then Exit Sub
Rows("15:16").EntireRow.Hidden = False
If Target.Value = "Reliure Souple" Then
Application.Rows("15:16").EntireRow.Hidden = True
ElseIf Target.Value = "Reliure Brochée" Then
Application.Rows("15:16").EntireRow.Hidden = True
End If
End Sub
A+ François