Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 2
Default I want to convert an Excel Chart to a .tif format file

I have tried copying to PowerPoint and then saving as a tif, but the quality
is not as good.
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 57
Default I want to convert an Excel Chart to a .tif format file

I suppose the easiest way would be for you to download a copy of the free
ASAP utility. As one of its options, you can convert an Excel file into a
..tif... others too. BR


"rlbell" wrote in message
...
I have tried copying to PowerPoint and then saving as a tif, but the
quality
is not as good.



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 182
Default I want to convert an Excel Chart to a .tif format file

Hello, Brad!
You wrote on Wed, 2 Aug 2006 13:50:48 -0500:

B I suppose the easiest way would be for you to download a
B copy of the free ASAP utility. As one of its options, you
B can convert an Excel file into a .tif... others too. BR

B "rlbell" wrote in message
B ...
?? I have tried copying to PowerPoint and then saving as a
?? tif, but the quality is not as good.

I thought it could be done tho' I'll have to leave quality
judgements to you :-) You can copy an Excel chart into the free
program Irfanview and save it as a TIF.

James Silverton
Potomac, Maryland

E-mail, with obvious anti-spam: not.jim.silverton.at.comcast.not

  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 2
Default I want to convert an Excel Chart to a .tif format file

Great thanks, I did a search for the ASAP utility and did not locate it, can
you tell me how to find it to download?

"Brad" wrote:

I suppose the easiest way would be for you to download a copy of the free
ASAP utility. As one of its options, you can convert an Excel file into a
..tif... others too. BR


"rlbell" wrote in message
...
I have tried copying to PowerPoint and then saving as a tif, but the
quality
is not as good.




  #5   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default I want to convert an Excel Chart to a .tif format file

Did you use Google? It's the first link, whether I enter 'asap utility' or
'asap utilities'.

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


"rlbell" wrote in message
...
Great thanks, I did a search for the ASAP utility and did not locate it,
can
you tell me how to find it to download?

"Brad" wrote:

I suppose the easiest way would be for you to download a copy of the free
ASAP utility. As one of its options, you can convert an Excel file into
a
..tif... others too. BR


"rlbell" wrote in message
...
I have tried copying to PowerPoint and then saving as a tif, but the
quality
is not as good.








  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 4
Default I want to convert an Excel Chart to a .tif format file

The following code produced a .tif file that seems to be of very good
quality when imported as an object into Word, PowerPoint and Excel, or
when opened into Microsoft Paint. The only program where the quality
was questionnable was when I opened it in the Microsoft accessory,
Imaging. Give it a try and let me know what you think.


Sub ChartAsTIF()
If TypeName(Selection) = "ChartArea" Then
userFname = InputBox("Filename of Chart File?", "Save Chart",
"ExcelChart")
userNameAndPath = ThisWorkbook.Path & "\" & userFname & ".tif"
ActiveChart.Export Filename:=userNameAndPath, filtername:="TIF"
MsgBox "Chart is saved as" & Chr(13) & userNameAndPath
Else
userReply = MsgBox("Please select a Chart Area, then run macro
again", vbOKOnly, "Error in Selection")
End If

End Sub


(Be careful when copying this code. Google's message area tends to
wrap lines of code at inappropriate places.)

Click on the chart, then run the macro.

  #7   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default I want to convert an Excel Chart to a .tif format file

A handier chart detection statement would work like this:

If Not ActiveChart Is Nothing Then
'' do the export routine
Else
userReply = MsgBox("Please select a Chart, then run macro again", _
vbOKOnly, "No Active Chart")
End If

This way you can have any chart element selected and it would still work on
the active chart.

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


wrote in message
oups.com...
The following code produced a .tif file that seems to be of very good
quality when imported as an object into Word, PowerPoint and Excel, or
when opened into Microsoft Paint. The only program where the quality
was questionnable was when I opened it in the Microsoft accessory,
Imaging. Give it a try and let me know what you think.


Sub ChartAsTIF()
If TypeName(Selection) = "ChartArea" Then
userFname = InputBox("Filename of Chart File?", "Save Chart",
"ExcelChart")
userNameAndPath = ThisWorkbook.Path & "\" & userFname & ".tif"
ActiveChart.Export Filename:=userNameAndPath, filtername:="TIF"
MsgBox "Chart is saved as" & Chr(13) & userNameAndPath
Else
userReply = MsgBox("Please select a Chart Area, then run macro
again", vbOKOnly, "Error in Selection")
End If

End Sub


(Be careful when copying this code. Google's message area tends to
wrap lines of code at inappropriate places.)

Click on the chart, then run the macro.



  #8   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 4
Default I want to convert an Excel Chart to a .tif format file

Very nice improvement. Thanks, Jon.

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
Excel 2007 File Problems (Opening New Format) Grazen Excel Discussion (Misc queries) 2 July 21st 06 04:24 PM
Excel file with hyperlinks takes a long time to open over the network Didier P Links and Linking in Excel 3 July 4th 06 04:39 PM
Convertion of Excel sheet file to .txt file format charu Excel Discussion (Misc queries) 2 June 27th 06 12:09 PM
Excel getting Error - file format is not valid WHEN OPENING babu Excel Discussion (Misc queries) 1 August 24th 05 09:09 PM
Changing the format of an Excel output file made by Microsoft Access Amir Excel Discussion (Misc queries) 2 May 1st 05 12:57 AM


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

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

About Us

"It's about Microsoft Excel"