Bonjour a tous,
Je voudrai savoir comment renseigner la couleur de mon graphique par un code HTML (#00FF7F) au lieu de juste le code "colorIndex="
Si vous pouviez m aider, j'en serai extremement reconnaissant, car je suis vraiment nul en VB, mais bon j'essaie de progresser
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.SeriesCollection(1).Select
With Selection.Border
.Weight = xlThin
.LineStyle = xlAutomatic
End With
Selection.Shadow = False
Selection.InvertIfNegative = False
With Selection.Interior
.ColorIndex = 8
.Pattern = xlSolid
End With
ActiveWindow.Visible = False
Windows("Book1").Activate
Range("O23").Select
End Sub
