Aug 17, 2001 #1 ssreddy Programmer Aug 13, 2001 4 HK Is it possible to save a graph in excel as a GIF file. This graph has been generated through VB. Any help??
Is it possible to save a graph in excel as a GIF file. This graph has been generated through VB. Any help??
Aug 20, 2001 #2 Chance1234 IS-IT--Management Jul 25, 2001 7,871 US Set CurrentChart = Sheets("Sheet1".ChartObjects(1).Chart Fname = ThisWorkbook.Path & "\temp.gif" CurrentChart.Export FileName:=Fname, FilterName:="GIF" Upvote 0 Downvote
Set CurrentChart = Sheets("Sheet1".ChartObjects(1).Chart Fname = ThisWorkbook.Path & "\temp.gif" CurrentChart.Export FileName:=Fname, FilterName:="GIF"