Vba create chart loop

MikeL

Active Member
Joined
Mar 17, 2002
Messages
488
Office Version
  1. 365
Platform
  1. Windows
Hi, I want to loop thru each worksheet in my workbook and create a new stacked column chart from each table on that sheet.

Code using is:

'Set src = Selection
'With Charts.Add
' .ChartType = xlColumnStacked
' .SetSourceData Source:=src, PlotBy:=xlRows
' .Location Where:=xlLocationAsObject, Name:="Sheet1"


How do I change code to reference current ws and not Sheet1 as it loops?

Thanks in advance
 
Last edited:

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Try something like this...

Code:
    Dim currentWorksheet As Worksheet
    Dim currentChart As Chart
    
    For Each currentWorksheet In ActiveWorkbook.Worksheets
        Set currentChart = currentWorksheet.Shapes.AddChart2(XlChartType:=xlColumnStacked).Chart
        With currentChart
            'set chart properties
            '
            '
        End With
    Next currentWorksheet

Note that you can set the properties for Left, Top, Width, and Height using the AddChart2 method, which contains optional parameters for those properties...

Code:
[COLOR=#574123]Set currentChart = currentWorksheet.Shapes.AddChart2(XlChartType:=xlColumnStacked, Left:=currentWorksheet.Range("B2").Left, ...).Chart[/COLOR]

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,424
Members
448,961
Latest member
nzskater

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