{Macro Modification} Connect Primary And Secondary Axis To Same Cell Values

Excel777

Well-known Member
Joined
Jul 3, 2009
Messages
912
Office Version
  1. 2019
hi all
I use this macro to connect primary axis chart Minimum & Maximum & Major Units to cell value.
I need your help to connect the secondary axis values to the same primary axis value using this macro

Option Explicit
Sub ChartMinMax()
Sheet3.Unprotect Password:="1a"
Dim iChart As Long
Dim nCharts As Long
nCharts = Sheets("Tr").ChartObjects.Count
For iChart = 1 To nCharts
With ActiveSheet.ChartObjects(iChart).Chart
.Axes(xlValue).MaximumScale = Sheets("Tr").Range("i6").Value
.Axes(xlValue).MinimumScale = Sheets("Tr").Range("i5").Value
.Axes(xlValue).MajorUnit = Sheets("Tr").Range("i10").Value
.Axes(xlValue).MinorUnit = Sheets("Tr").Range("i10").Value
Sheet3.Protect Password:="1a", AllowFiltering:=True
End With
Next
End Sub
Private Sub Worksheet_Calculate()
ChartMinMax
End Sub
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,216,113
Messages
6,128,905
Members
449,478
Latest member
Davenil

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