Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default best way to export chart

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
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 103
Default best way to export chart

There may be a better way, but I find it best to figure out the best size in
Excel itself, as the words and boxes move around a bit and lose form when
resizing.

then you can either copy (clicking so the whole chart is selected) and paste
into another document, or I frequently use the "PrtScr" and paste into
photoshop.

"Richard" wrote:

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

  #3   Report Post  
Posted to microsoft.public.excel.misc
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



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default best way to export chart

Works fine.
..Gif is smaller file, yet looks better - so I will go with .gif

Is there anyway to select export file resolution?
--
Richard


"Don Guillett" wrote:

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




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Export chart to GIF no longer works after installing Excel 2007b2 excelFan Charts and Charting in Excel 15 May 4th 07 05:36 PM
can i export a high resolution chart from Excel timmsteiner Excel Discussion (Misc queries) 1 November 13th 05 09:13 AM
Activating a Chart object Hari Prasadh Charts and Charting in Excel 6 August 2nd 05 07:22 PM
Urgent Chart Questions Brent E Excel Discussion (Misc queries) 0 May 9th 05 11:01 PM
Chart appearance using "export" method Alex St-Pierre Charts and Charting in Excel 4 December 3rd 04 03:29 AM


All times are GMT +1. The time now is 07:11 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"