exporting charts

C

chico

How to export a chart and use it in other applications like MS Word and
others? Thanks
 
D

Don Guillett

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
 
J

Jon Peltier

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
 
C

chico

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
_______
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top