VBA to auto adjust the scale of Y axes of 2 charts based on the maximum value among both of the charts

spgexcel

New Member
Joined
Mar 16, 2016
Messages
23
Office Version
  1. 365
Platform
  1. Windows
Hi

I have been trying to zero down to a vba code for a task.
I have 2 charts in excel and need to autoadjust the scale of Y axes to maximum among both of them so that both scale are equal.
I have following code but it only works for 1st time and the next time scale is not reset again before the next selection.

VBA Code:
Sub AdjustYAxis2()

Dim cht1 As Chart
Dim cht2 As Chart
Dim maxVal As Double

Set cht1 = ActiveSheet.ChartObjects("Chart 2").Chart
Set cht2 = ActiveSheet.ChartObjects("Chart 5").Chart

If cht1.HasAxis(xlValue) And cht2.HasAxis(xlValue) Then
    maxVal = Application.WorksheetFunction.Max(cht1.Axes(xlValue).MaximumScale, cht2.Axes(xlValue).MaximumScale)

    cht1.Axes(xlValue).MinimumScale = 0
    cht1.Axes(xlValue).MaximumScale = maxVal

    cht2.Axes(xlValue).MinimumScale = 0
    cht2.Axes(xlValue).MaximumScale = maxVal
Else
    MsgBox "One or both of the charts do not have a Y-axis."
End If

End Sub

As an example, 1st screenshot is before vba code runs. and 2nd image is where the scale sets to 45 as max value for both which is what I want. But when the values in source data change next time the max value remains at 45 and is not reset.

1675273537006.png


1675273911076.png


Any suggestions to edit the code?

Thanks
 

Attachments

  • 1675273640903.png
    1675273640903.png
    34.6 KB · Views: 6

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I think I found the solution.
Sub AdjustYAxis2()

VBA Code:
Dim cht1 As Chart
Dim cht2 As Chart
Dim maxVal As Double

Set cht1 = ActiveSheet.ChartObjects("Chart 2").Chart
Set cht2 = ActiveSheet.ChartObjects("Chart 5").Chart

[I][B]    cht1.Axes(xlValue).MaximumScaleIsAuto = True[/B][/I]
[B][I]    cht2.Axes(xlValue).MaximumScaleIsAuto = True[/I][/B]

If cht1.HasAxis(xlValue) And cht2.HasAxis(xlValue) Then
    maxVal = Application.WorksheetFunction.Max(cht1.Axes(xlValue).MaximumScale, cht2.Axes(xlValue).MaximumScale)

    cht1.Axes(xlValue).MinimumScale = 0
    cht1.Axes(xlValue).MaximumScale = maxVal

    cht2.Axes(xlValue).MinimumScale = 0
    cht2.Axes(xlValue).MaximumScale = maxVal
Else
    MsgBox "One or both of the charts do not have a Y-axis."
End If

End Sub

" cht1.Axes(xlValue).MaximumScaleIsAuto = True
cht2.Axes(xlValue).MaximumScaleIsAuto = True"

I added these two lines. It works perfectly for me..

Eureka!
 
Upvote 0
Solution
Here's a way that doesn't require vba.

Here's a simple example.

Top: Data and charts with different autoscaled chart limits.

Middle: Dummy data range with minimum and maximum Y-axis values. Minimum is hard-coded zero, maximum is formula like =MAX(y values for charts 1 and 2). Copy this data, paste special in each chart as new series (orange lines). Since both charts now have the same maximum values, the axes will autoscale the same.

Bottom: Hide the new series: format to use no line.

SameAxisScaleMultipleCharts1.png
 
Upvote 0

Forum statistics

Threads
1,215,352
Messages
6,124,453
Members
449,161
Latest member
NHOJ

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