HOW TO CONVERT CHART IN EXTERNAL GIFS?

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
select your graph, and while holding down the shift key, go to the edit menu, and select 'copy picture', you can then copy the image of the chart to the clipboard and paste it elsewhere.
 
Upvote 0
Alternatively if you have a whole bunch of charts, you can Save...File as HTML... and then go to the directory where you saved it and you'll find all your charts as filename#.gif
 
Upvote 0
Here is a macro that will do this. You have to be on a chart sheet to run it, and you will have to change the path to suit.

Sub GifCht()
Dim FName As String
FName = Application.InputBox(prompt:="Please enter File name", Title:="Export chart", Type:=2)
ActiveChart.Export FileName:="E:Results" & FName & ".gif", FilterName:="GIF"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top