How can I save an excel chart in gif format?

D

Dom

I want to create charts in excel and the display them on a web site. How can
I save an excel chart in gif format?

Than ks, Dom
 
D

Don Guillett

try
Sub ExportChartGIF()
ActiveChart.Export Filename:="C:\a\MyChart.gif", _
FilterName:="GIF"
End Sub
 
Top