View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default best way to export chart

use either of these ideas. If you want to do all incorporate into a for/next
loop

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

--
Don Guillett
SalesAid Software

"Richard" wrote in message
...
How do I convert Excel charts into graphic files, like .gif or .jpeg ?

Macro would be best - where I could specify resolution, and make .gif
files
for all graphs in a given workbook. This way I could easily make small
files
for web, and higher resolution files for printing.

--
Richard