exports the active chart as a GIF file: : Chart Export « Excel « VBA / Excel / Access / Word






exports the active chart as a GIF file:

 
Sub ExportChart()
    Dim myChart As Chart
    Set myChart = ActiveChart
    myChart.Export Filename:="C:\Chart.gif", Filtername:="GIF"
End Sub
     

 








Related examples in the same category

1.Creates web page with interactivity from an embedded chart