Charts in VBA

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
I am having trouble producing charts in VBA. I am having trouble with the portion in the With statement.

I was receiving an error "Unable to get the chartobjects property of the worksheet class" on the line:
Code:
With Worksheets("LowDistCharts").ChartObjects(aa)

The properties I would like to add to the charts are: line chart type, x and y axis labeled, include a chart title, and most importantly because I would like to produce many of the charts I would like to have them added to the sheet one below the other so they are easily visible. Also, I would like to shrink the chart size to a lesser width and height.

The code I have currently is below:

Code:
Dim aa As IntegerDim StartDate As Range
Dim EndDate As Range
Dim RngStart As String
Dim RngEnd  As String


For aa = 5 To 24


    ActiveWorkbook.Sheets("AllDistanceMeasures").Activate


    Set StartDate = Cells(aa, 9)
    Set EndDate = Cells(aa, 10)


    ActiveWorkbook.Sheets("ActiveSheet").Activate
    
        RngStart = Cells.Find(What:=StartDate, After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Address(1, 1)
        
        RngEnd = Cells.Find(What:=EndDate, After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Offset(0, 1).Address(1, 1)
    
    With Worksheets("LowDistCharts").ChartObjects(aa)
    .HasTitle = True
    .ChartTitle.Text = aa & StartDate & "to" & EndDate
    '.Placement =
    .RoundedCorners = True
    .SetSourceData Source:=Range("LowDistCharts!RngStart:RngEnd")
    .ChartType = xlLine
    
    
    End With
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
First, make sure that the active workbook contains a worksheet named "LowDistChart". Then, you'll need to make sure that your worksheet named "LowDistChart" contains at least 24 chartobjects. Also, some of those properties you're trying to set belong to the Chart object, not the ChartObject object. And the syntax for the range you're trying to assign to the chart is not correct either. So maybe something like this..

Code:
        RngStart = Cells.Find(What:="wk1", After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Address([COLOR=#ff0000]External:=True[/COLOR])
        
        RngEnd = Cells.Find(What:="wk3", After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Offset(0, 1).Address([COLOR=#ff0000]External:=True[/COLOR])

Code:
    With Worksheets("LowDistCharts").ChartObjects(aa)
        .RoundedCorners = True
        With .Chart
            .HasTitle = True
            .ChartTitle.Text = aa & StartDate & "to" & EndDate
            .ChartType = xlLine
            .SetSourceData Source:=Range(RngStart & ":" & RngEnd)
        End With
    End With
 
Upvote 0
I definitely did include a worksheet named "LowDistCharts" in the workbook; I definitely do not have chartobjects in the worksheet or vba code.

The line above is still yielding an error "Unable to get the chart objects property of the worksheet class". How do I add a chartobject to the worksheet? Is it correct to say that I must dimension a variable as a chartobject and then add a chart object for every iteration from which to place a chart?
 
Upvote 0
Got it. it seems to be working with the code below. Just needs some fine tuning now. Thanks!

Code:
Set sh = ActiveWorkbook.Worksheets("LowDistCharts")    Set chrt = sh.ChartObjects.Add(Left:=chtLeft, Top:=chtTop, Width:=300, Height:=300)
    Set ch = chrt.Chart
 
Upvote 0

Forum statistics

Threads
1,215,456
Messages
6,124,939
Members
449,197
Latest member
k_bs

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