I am currently using the below code to update the scale for a chart on a different worksheet. My problem is that the cells F20, G20, and H20 are updated by a formula and thus will not update unless changed by actually retyping in the numbers that the formula calculated. I would like to see if I can use similar code as below with the Worksheet_calculate function instead of the Worksheet_Change.
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Select Case Target.Address
Case "$F$20"
Sheets("Data entry sheet and tech graph").ChartObjects("Chart 1").Chart.Axes(xlValue) _
.MaximumScale = Target.Value
Case "$G$20"
Sheets("Data entry sheet and tech graph").ChartObjects("Chart 1").Chart.Axes(xlValue) _
.MinimumScale = Target.Value
Case "$H$20"
Sheets("Data entry sheet and tech graph").ChartObjects("Chart 1").Chart.Axes(xlCategory) _
.CrossesAt = Target.Value
Thank you in advance,
Zac
Bookmarks