A voir également:
- VBA graph
- Excel compter cellule couleur sans vba - Guide
- Incompatibilité de type vba ✓ - Forum VB / VBA
- Touche puissance sur calculatrice casio graph 35+e - Forum calculatrices
- Erreur 13 incompatibilité de type VBA excel ✓ - Forum Excel
- 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