Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom Ogilvy posted the following code some time back and it works wonderfully
in Excel 2003 but, of course, encounters problems in 2007. Can anyone give suggestions for bringing it up to date for 2007? Sub ExportPicAsJpg() Dim chTemp As Chart Dim picCopy As Picture Dim dWidth As Double Dim dHeight As Double Dim shNew As Worksheet Set picCopy = Selection Set chTemp = Charts.Add Set shNew = Sheets.Add dWidth = picCopy.Width dHeight = picCopy.Height Application.ScreenUpdating = False With chTemp .SetSourceData Source:=Sheets("Sheet1").Range("FA16383") .Location Whe=xlLocationAsObject, Name:=shNew.Name With shNew.ChartObjects(1) .Width = dWidth + 2 .Height = dHeight + 2 .Top = 0 .Left = 0 Range("A1").Select picCopy.Copy .Activate ActiveChart.Paste .Interior.ColorIndex = 1 ActiveChart.Export "c:\TempPic.JPG", "jpg" End With End With Application.DisplayAlerts = False shNew.Delete Application.DisplayAlerts = True Application.ScreenUpdating = True End Sub Thanks for any help given, -- Pops Jackson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 XML Export | Excel Worksheet Functions | |||
export of data from SAP to MS-Excel 2007 | Excel Discussion (Misc queries) | |||
Export Library from WMP 11 to Excel 2007 | Excel Discussion (Misc queries) | |||
export data from sap to excel 2007 | Excel Discussion (Misc queries) | |||
Export to Excel 2007 | Excel Programming |