exporting charts

  • Thread starter Thread starter chico
  • Start date Start date
A possible solution

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
 
For example:

Copy the chart in Excel, switch to Word, use Paste.

Select the chart, hold shift while clicking the Edit menu, Copy Picture (on
screen and picture options), switch to Word, use Paste.

- Jon
 
Thanks man, very useful.

Jon Peltier said:
For example:

Copy the chart in Excel, switch to Word, use Paste.

Select the chart, hold shift while clicking the Edit menu, Copy Picture
(on screen and picture options), switch to Word, use Paste.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______
 
Back
Top