Worksheet_Change(ByVal Target As Range) not working with Protect Sheet

trillium

Board Regular
Joined
Aug 9, 2010
Messages
63
Hi
I have a macro to hide/unhide columns and update charts on a sheet. There are some areas where users can update information, but the rest I want locked so they can't accidentally mess up the formulas.

I tried inserting ActiveSheet.Unprotect at the very beginning and ActiveSheet.Protect at the very end, but didn't work.

I think looked through here and tried "Me.unprotect and then Me.Protect along with Application.EnableEvents = False at the beginning and True at the end... it will now unprotect once, hide/unhide columns and update charts but if I try selecting a new value, throws up a dialogue box that says "The cell or chart you are trying to change is on a protected sheet..." and I've noticed it's not reprotecting the sheet.

I have Unlocked all the charts already too.

Any thoughts? (I didn't put the full code in, it's very very long)

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
' Jan 2019 Dava McKay
' HideRegion Macro
' Hide regions based on value in drop down list, charts will update
 Application.ScreenUpdating = False
 Application.EnableEvents = False
 On Error Resume Next
 Me.Unprotect
 
 
 If Target.Address(True, True) = "$A$3" Then
 
    
   Select Case Target
'''''''''''''''''''''''''''''''''''''''''''''''
   Case "Select Region"
   'Unhide
    Columns("C:CH").Select
    Selection.EntireColumn.Hidden = False
    Range("B4").Select


    'Change Names of Months
   'Change colour of Names of Months
    'JAN
    Range("C4").Select
      With Selection.Font
        .ColorIndex = xlAutomatic
        .TintAndShade = 0
    End With
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
What happens if you remove this line of code
Code:
On Error Resume Next
 
Upvote 0
Hi Fluff
I removed it and get the same message. It just doesn't seem to want to re-protect the sheet and then I get that message box...
 
Upvote 0
That message box indicates that the sheet is protected & that you are probably trying to change a locked cell.
You need to ensure that cells like A3 are un-locked.
 
Upvote 0
That's IT! That's the only cell I forgot to unlock! It's where the user selects which data/chart set to view. I feel so stupid.
Thank you!
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,075
Messages
6,128,660
Members
449,462
Latest member
Chislobog

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