A voir également:
- VBA graph
- Excel compter cellule couleur sans vba - Guide
- Graph - Télécharger - Études & Formations
- Décomposition facteur premier casio graph 35+e - Forum calculatrices
- Incompatibilité de type vba ✓ - Forum VB / VBA
- Mettre sa calculatrice en degré casio graph 35+e ✓ - Forum calculatrices
1 réponse
Sub Macro1()
Charts.Add
ActiveChart.ChartType = xlXYScatter
ActiveChart.SetSourceData Source:=Sheets("ECRIS LE NOM DE TA FEUILLE").Range("SELECTIONNE LES VALEURS") _
, PlotBy:=xlColumns
ActiveChart.Location Where:=xlLocationAsObject, Name:="ECRIS LE NOM DE TA FEUILLE"
With ActiveChart
.HasTitle = False
.Axes(xlCategory, xlPrimary).HasTitle = False
.Axes(xlValue, xlPrimary).HasTitle = False
End With
End Sub
Charts.Add
ActiveChart.ChartType = xlXYScatter
ActiveChart.SetSourceData Source:=Sheets("ECRIS LE NOM DE TA FEUILLE").Range("SELECTIONNE LES VALEURS") _
, PlotBy:=xlColumns
ActiveChart.Location Where:=xlLocationAsObject, Name:="ECRIS LE NOM DE TA FEUILLE"
With ActiveChart
.HasTitle = False
.Axes(xlCategory, xlPrimary).HasTitle = False
.Axes(xlValue, xlPrimary).HasTitle = False
End With
End Sub