Could't find a solution? Ask the experts in our
How to Save a Chart as Image using Excel VBA
Here is the way to save the active chart in Excel 2007 to a JPG file. It is better to size the chart appropriately before exporting it as an image.
Sub Save_ChartAsImage()
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Dim oCht As Chart
Set oCht = ActiveChart
On erRROR GoTo Err_Chart
oCht.Export Filename:="C:\PopularICON.jpg", Filtername:="JPG"
Err_Chart:
If Err <> 0 Then
Debug.Print Err.Description
Err.Clear
End If
End Sub
The code uses Export method to save the chart in graphics format
- Login or register to post comments
- Feed: vbadb feed
- Original article
- 191 reads

