Sub Essai()
' Récupérer nom du graphique
NomGraphique = Sheets("Feuil1").ChartObjects(1).Name
' Change la plage de la courbe
ActiveSheet.ChartObjects(NomGraphique).Activate
ActiveChart.SeriesCollection(1).Select
ActiveChart.SeriesCollection(1).Formula = "=SERIE(Feuil1!$C$2;Feuil1!$B$3:$B$5;Feuil1!$C$3:$C$6;1)"
Range("A1").Select
End Sub