General discussion
January 15, 2001 at 07:05 PM
chan_ckm

Create a bmp file from Excel

by chan_ckm . Updated 25 years, 3 months ago

Understood that Excel Chart can be exported as a gif file programmatically with the following coding in Visual Basic:
sub Create_GIF()
Dim mychart As Chart
Set mychart = ActiveSheet.ChartObjects(1).Chart
mychart.Export FileName:=”c:\Mychart.gif”,FilterName:=”GIF”
End Sub

(After run the Macro a gif file will be created.)

Can a photo(in bmp or gif) attached in Excel be exported? If yes, how?

This discussion is locked

All Comments