quick question on chart axis selection in VBA

Showard27

Board Regular
Joined
Sep 5, 2005
Messages
155
Hopefully a quick question all

The following line of code is failing
Code:
Sheets("ChartByCount").FullSeriesCollection(5).AxisGroup = 2
I get a runtime error; "Method 'AxisGroup' of object 'Series' failed" Must be a syntax problem or something equally simple, but I can find the problem

Any help would be very much appreciated
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
You'll need to qualify the reference to the series collection. For example, to refer to a chart named "Chart 1", try...

Code:
Sheets("ChartByCount").ChartObjects("Chart 1").Chart.FullSeriesCollection(5).AxisGroup = 2

Or, to refer to a chart by index number...

Code:
Sheets("ChartByCount").ChartObjects(1).Chart.FullSeriesCollection(5).AxisGroup = 2

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,216,194
Messages
6,129,449
Members
449,509
Latest member
ajbooisen

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