J'ai introduis ce code dans la feuille où se trouve les deux graphiques.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("b23" ).Select
If Cell.Value = "Graph1" Then
ActiveSheet.ChartObjects("Graphique 1" ).Visible = True
ActiveSheet.ChartObjects("Graphique 2" ).Visible = False
Else
ActiveSheet.ChartObjects("Graphique 1" ).Visible = False
ActiveSheet.ChartObjects("Graphique 2" ).Visible = True
End If
End Sub
A l'exécution, j'ai une erreur "objet requis" sur la ligne trois.
Est-ce que quelqu'un voit où ça bloque 
Message édité par elhayat le 01-07-2007 à 16:58:01