Change Chart Axis in Protected Sheet via VBA not working

Rootero

New Member
Joined
Jun 24, 2019
Messages
4
Hi all, I am struggling to dynamically change the axis of my chart in a protected worksheet. The code below works fine on an unprotected sheet, but once I protect the sheet the code is not unprotecting the sheet and it stops without error at the line ws.ChartObjects("SUBPlot").Chart.Axes(xlValue).MaximumScale = upper. I am at a loss as to why the unprotect is not working (MsgBox ws.protectionstatus will give "true" before and after unprotect command). Could you please help me figure out what is going wrong here?

Thank you!

VBA Code:
Function ChangeChartAxisMaxScale(upper)
    Dim pass As String
    pass = "myPassword"

    Dim wasProtected As Boolean
    Dim ws As Worksheet
    
    Set ws = ThisWorkbook.ActiveSheet
        If ws.ProtectionMode Then
            ws.Unprotect Password:=pass
            wasProtected = True
        Else
            wasProtected = False
        End If

    ws.ChartObjects("SUBPlot").Chart.Axes(xlValue).MaximumScale = upper

    If wasProtected Then
            ws.Unprotect Password:=pass, UserInterfaceOnly:=True, AllowFiltering:=True, DrawingObjects:=True
            ws.EnableOutlining = True
    Else
    End If

End Function
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Maybe this line of code before the stall line?
Code:
ws.ChartObjects("SUBPlot").Activate
HTH. Dave
 
Upvote 0
I would have never figured that out - thank you! It works now as intended. Below the complete code in case someone needs it in the future. One could also make relatively easily turn it into a general function that hands the ChartObject as a variable to the function.

VBA Code:
Function ChangeChartAxisMaxScale(upper)
    Dim pass As String
    pass = "myPassword"

    Dim wasProtected As Boolean
    Dim ws As Worksheet
    Set ws = ThisWorkbook.ActiveSheet
        If ws.ProtectionMode Then
            wasProtected = True
            ws.Unprotect Password:=pass
        Else
            wasProtected = False
        End If

    ws.ChartObjects("SUBPlot").Activate
    ws.ChartObjects("SUBPlot").Chart.Axes(xlValue).MaximumScale = upper


    If wasProtected Then ws.Protect Password:=pass, Contents:=True, UserInterfaceOnly:=True, AllowFiltering:=True, DrawingObjects:=True
    If wasProtected Then ws.EnableOutlining = True


End Function
 
Upvote 0
Actually, it doesn't work anymore after restarting the file. When removing the code after the ws.Unprotect Password:=pass loop, then the worksheet remains protected (even if I feed the routine the actual worksheet name). The code does however continue after the unprotect command and then stops as soon as I try to address the Chart in any way without error

It will stop without generating an error after
ws.ChartObjects("SUBPlot").Activate

The next line (ws.ChartObjects("SUBPlot").Chart.Axes(xlValue).MaximumScale = upper) is never reached. If I remove ws.ChartObjects("SUBPlot").Activate, then the line ws.ChartObjects("SUBPlot").Chart.Axes(xlValue).MaximumScale = upper is reached, but not executed.

I am absolutely at a loss what is happening here.

Just in case this is relevant here, the file is protected using upon save:

Worksheets("Dashboard SUB").Protect Password:=pass, UserInterfaceOnly:=True, AllowFiltering:=True
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,438
Members
449,083
Latest member
Ava19

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