C chico Jan 15, 2007 #1 How to export a chart and use it in other applications like MS Word and others? Thanks
D Don Guillett Jan 15, 2007 #2 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
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 Jan 15, 2007 #3 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
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 Jan 16, 2007 #4 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 _______ Click to expand...
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 _______ Click to expand...