Jump to content

Excel Charts


Recommended Posts

LocoDarwin offered to convert VBA chart code to someone on an old post and was never responded to. If the offer still stands, I would like to be able to generate charts and here is the VBA code to create a chart and then save it as a GIF file.

Sub Chart()
'
' Chart Macro
'

'
    Range("E5:E7").Select
    ActiveSheet.Shapes.AddChart.Select
    ActiveChart.SetSourceData Source:=Range("Sheet1!$E$5:$E$7")
    ActiveChart.ChartType = xlPie
    Fname = "c:\test.gif"
    ActiveChart.Export Filename:=Fname, FilterName:="GIF"
End Sub
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...