Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
I have tried copying to PowerPoint and then saving as a tif, but the quality
is not as good. |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Very nice improvement. Thanks, Jon.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 File Problems (Opening New Format) | Excel Discussion (Misc queries) | |||
Excel file with hyperlinks takes a long time to open over the network | Links and Linking in Excel | |||
Convertion of Excel sheet file to .txt file format | Excel Discussion (Misc queries) | |||
Excel getting Error - file format is not valid WHEN OPENING | Excel Discussion (Misc queries) | |||
Changing the format of an Excel output file made by Microsoft Access | Excel Discussion (Misc queries) |