Worksheet change vs worksheet calculate

cloughna

New Member
Joined
Dec 21, 2006
Messages
18
I've got some code that is driving an axis scale based on a few cells. What I would like to do is have the axis be driven by calculated cells instead. I'm thinking I need to change the code below to worksheet_calculate, but (if you haven't guessed already), I'm not sure of the changes that need be made.

Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
Select Case Target.Address
Case "$HN$19"
ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory) _
.MaximumScale = Target.Value
Case "$V$19"
ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory) _
.MinimumScale = Target.Value
Case Else
End Select
End Sub

Help?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Code:
Private Sub Worksheet_Calculate(ByVal Target As Range)
Select Case Target.Address
Case "$HN$19"
ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory) _
.MaximumScale = Target.Value
Case "$V$19"
ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory) _
.MinimumScale = Target.Value
Case Else
End Select
End Sub


/Comf
 
Upvote 0
When I run that I get a compile error:

"Procedure declaration does not match description of event or procedure having the same name"

At the same time as the above error message pops up, it automatically highlights "Private Sub Worksheet_Calculate(ByVal Target As Range" (does not highlight the closing parenthesis.

Thoughts? (Thanks for the speedy response by the way)
 
Upvote 0
Excel does not pass a Target argument to the Calculate event.
If you want to modify a Change event to run whenever V19 or HN19 change (either because the user change their value or the cells feeding the formulas in them changed) you could use code like this.


Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim keyRange as Range
    On Error Resume Next
    Set keyRange = Application.Intersect(Target.Dependents, Range("V19,HN19"))
    On Error Goto 0
    If Target.Cells.Count = 1 Then
        If Not KeyRange Is Nothing Then
            ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory) _
.MinimumScale = Target.Value
        End If
    End If
End Sub
 
Upvote 0
mikerickson,

I gave that a shot, and my chart axes don't seem to be updating. what's more... it appears that your code does not include the maximumscale option.

I've got no other suggestions, as I'm having a tough time following your code (surely more a reflection of me than your code).
 
Upvote 0
This should update your chart anytime any calculation is done on the sheet. You can also trigger a calculation manually by pressing the F9 key.

Code:
Private Sub Worksheet_Calculate()

    With ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory)
        .MaximumScale = Range([COLOR="Red"]"HN19"[/COLOR]).Value
        .MinimumScale = Range([COLOR="Red"]"V19"[/COLOR]).Value
    End With
    
End Sub

Note: HN19 and V19 are the two cells with the formulas that calculate the Min and Max scales.
 
Upvote 0
The other way this could be done is to update the scale of the chart only when the chart's data changes and have the macro do the calculation.

For example, the chart's data is in say A1:B100 and you want to calculate the Max-scale to the max value in column B + 1 and the min-scale calculated to the min value in column B - 1. The code below only runs when you make a change in the values in B1:B100 and then it does the calculations and sets the scale.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    'Reset scale when values in B1:B100 change
    If Not intesect(Target, Range("B1:B100")) Is Nothing Then
    
        With ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory)
            .MaximumScale = Application.Max(Range("B1:B100")) + 1
            .MinimumScale = Application.Max(Range("B1:B100")) - 1
        End With

    End If

End Sub
 
Upvote 0
The other way this could be done is to update the scale of the chart only when the chart's data changes and have the macro do the calculation.

For example, the chart's data is in say A1:B100 and you want to calculate the Max-scale to the max value in column B + 1 and the min-scale calculated to the min value in column B - 1. The code below only runs when you make a change in the values in B1:B100 and then it does the calculations and sets the scale.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

    'Reset scale when values in B1:B100 change
    If Not intesect(Target, Range("B1:B100")) Is Nothing Then
    
        With ActiveSheet.ChartObjects("Chart 561").Chart.Axes(xlCategory)
            .MaximumScale = Application.Max(Range("B1:B100")) + 1
            .MinimumScale = Application.Max(Range("B1:B100")) - 1
        End With

    End If

End Sub

This would mean I would have to manually update the chart data correct? So if all the data was formulas, and only the cell value (not cell contents) updated, it would not work?
 
Upvote 0
You have to have data somewhere for the formulas to calculate off of don't you?

Of course, but the issue I've been having with Worksheet_change is this...

lets say in cell B1 I have the value 1
in cell B2 I have =B1*2... show it shows 2.

If I want the cell B2 to be driving my scale axis (and so use it in the above cells), updating cell B1 to, say, 3 so that B2 shows 6, will not change my scale. I would have to double-click in the B2 cell to open up the formula, and then press enter (so no changes were made, but excel picks up that there could have been a change) and it regenerates.
 
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

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