View Single Post
  #3   Report Post  
Don Guillett
 
Posts: n/a
Default

try these
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

"Brad" wrote in message
...
Hi all. I have a question on printing our charts. I can
print out a chart on a printer and scan the printed chart
to get a .pdf or a .tif file format. Is there a way to
export a chart in these formats? Other formats like .bmp
or .jpeg?