Something like this should work:
Sub test Dim mychart As Chart Set mychart = ActiveSheet.ChartObjects(1).Chart mychart.Export FileName:="c:\Mychart.JPEG", FilterName:="JPEG" end sub
I hope this helps.
excel to pdf .net
excel to pdf C#
If you want Great score in your GMAT Exam, checkout Magoosh.com
Something like this should work:
Sub test
Dim mychart As Chart
Set mychart = ActiveSheet.ChartObjects(1).Chart
mychart.Export FileName:="c:\Mychart.JPEG", FilterName:="JPEG"
end sub
I hope this helps.