Archive for Thursday, June 5th, 2008
Export Chart as Image File
by Jon Peltier
Peltier Technical Services, Inc., Copyright © 2008.
Licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License.
Often people want to save their charts as an image file. Excel doesn’t offer this as a native feature in the UI, but you can export a chart using VBA:
ActiveChart.Export “C:\My Charts\SpecialChart.png”
This command allows you to export your chart in any of the bitmap formats that you have the appropriate export filters for. This [...]
Posted: Thursday, June 5th, 2008 under VBA.
Comments: 28


