naming new charts in vba code

bahllr

Board Regular
Joined
May 7, 2009
Messages
62
I have a set of code that will produce a new chart based on a set of data. I want to manipulate that chart (size etc) in VBA but am having a difficult time doing that when each new chart has a new name (Chart 1, 2, 3 etc).

I have found some code about naming the chart that I have tried unsuccessfully. Can anyone help me here?

This is what I have:

Range("B262:C267").Select
Charts.Add
ActiveChart.ChartType = xlColumnClustered
ActiveChart.SetSourceData Source:=Sheets("Series Eval").Range("B262:C267"), _
PlotBy:=xlColumns
ActiveChart.Location Where:=xlLocationAsObject, Name:="Analysis & Reports"
With ActiveChart
.HasTitle = True
.ChartTitle.Characters.Text = "Capabilities by Series"
.Axes(xlCategory, xlPrimary).HasTitle = False
.Axes(xlValue, xlPrimary).HasTitle = False
.Name = Sheets("Analysis & Reports").Range("C3").Value
End With
ActiveChart.HasLegend = False
ActiveSheet.Shapes("Chart 39").IncrementLeft -215.25
ActiveSheet.Shapes("Chart 39").IncrementTop -84.75
ActiveSheet.Shapes("Chart 39").ScaleWidth 0.79, msoFalse, msoScaleFromTopLeft
ActiveSheet.Shapes("Chart 39").ScaleHeight 0.84, msoFalse, msoScaleFromTopLeft

I tried replacing "Chart 39" with the name, but that wasn't working for me either...as you can see by the chart number, I have been at this for awhile :)

Thanks
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Code:
Dim myChart As Chart
Dim ChartName As String

    ChartName = Sheets("Analysis & Reports").Range("C3").Value
    
    Set myChart = Charts.Add
    With myChart
    
        .ChartType = xlColumnClustered
        .SetSourceData Source:=Sheets("Series Eval").Range("B262:C267"), _
                        PlotBy:=xlColumns
        .Location Where:=xlLocationAsObject, Name:="Analysis & Reports"
    End With
    
    Set myChart = ActiveChart
    With myChart
    
        .HasTitle = True
        .ChartTitle.Characters.Text = "Capabilities by Series"
        .Axes(xlCategory, xlPrimary).HasTitle = False
        .Axes(xlValue, xlPrimary).HasTitle = False
        .Parent.Name = ChartName
        .HasLegend = False
    End With
    With ActiveSheet.Shapes(ChartName)
    
        .IncrementLeft -215.25
        .IncrementTop -84.75
        .ScaleWidth 0.79, msoFalse, msoScaleFromTopLeft
        .ScaleHeight 0.84, msoFalse, msoScaleFromTopLeft
    End With
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,873
Members
449,056
Latest member
ruhulaminappu

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