VBA to Readjust Chart Series Range

Chris Macro

Well-known Member
Joined
Nov 2, 2011
Messages
1,345
Office Version
  1. 365
Platform
  1. Windows
I have a bunch of graphs with multiple series that I need to adjust the range width that they are picking up. For example, Series1 might read data from "A1:C1" one month and then the next it might read "A1:M1". I have the looping down to get me to the Chart Series level however I am not sure how to extract the range data and manipulate it so that I can change the range (Not sure if it is possible to set a Range Variable equal to the Series range). Note: that the starting point of the range will never move, just the endpoint. Also Note: that each series has a different starting point (ie Series1 may start in column A while Series2 may start in Column Z). Any thoughts would be greatly appreciated!

CODE:

<font face=Calibri><SPAN style="color:#00007F">Sub</SPAN> Adjust_GraphSeries_Width()<br><br><SPAN style="color:#00007F">Dim</SPAN> sht <SPAN style="color:#00007F">As</SPAN> Worksheet<br><SPAN style="color:#00007F">Dim</SPAN> Grph <SPAN style="color:#00007F">As</SPAN> ChartObject<br><SPAN style="color:#00007F">Dim</SPAN> Ser <SPAN style="color:#00007F">As</SPAN> Series<br><SPAN style="color:#00007F">Dim</SPAN> Rng_Extenstion <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Long</SPAN><br><SPAN style="color:#00007F">Dim</SPAN> Rng <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Variant</SPAN><br><br>Rng_extension = 7<br><br><SPAN style="color:#00007F">Set</SPAN> sht = ThisWorkbook.ActiveSheet<br><br><SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> Grph <SPAN style="color:#00007F">In</SPAN> sht.ChartObjects<br>    <SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> Ser <SPAN style="color:#00007F">In</SPAN> Grph.Chart.SeriesCollection<br>        x = Ser.Name<br>        <br>        <SPAN style="color:#00007F">If</SPAN> Ser.ChartType <> 75 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#007F00">'Test to make sure not XY Scatter Series</SPAN><br>           Rng = Ser.Formula <SPAN style="color:#007F00">'Get range of series</SPAN><br>           <SPAN style="color:#007F00">'then need to get starting point of range and offset range</SPAN><br>           <SPAN style="color:#007F00">'by Rng_Extention variable number</SPAN><br>                        <br>            x = Rng.Address<br>            <br>            Ser.Values = x<br>        <br>        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>        <br>    <SPAN style="color:#00007F">Next</SPAN> Ser<br><SPAN style="color:#00007F">Next</SPAN> Grph<br><br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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