VBA Lock and Unlock Cell Help

PokeCoder

New Member
Joined
Aug 17, 2019
Messages
5
I need a little guidance. I do not want to use Data Validation to restrict data entry in the cells as the warnings for accidentally typing will decrease productivity. I want the user to be able to select from the list in the Table column C and it lock the unnecessary cells so they can quickly tab over the locked cells. I will need the code to function for each line in my table. I used my target range as ActiveSheet.ListObjects so it will also continue to work with the sheet is copied for the next month. I have also tried C3:C (my data does begin on line 3) as the target range and still cannot get it to work.

My drop box in the Column C (Table Column Header is Payment Type) has 3 possibilities
PDPM- should lock AE:AJ in each row if selected
RUGs IV- should lock AA:AD in each row
Levels- should lock AA:AJ

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range(ActiveSheet.ListObjects(1).Name & "[[#All],[Payment Type]]")) Is Nothing Then Exit Sub
    ActiveSheet.Unprotect Password:="Protection"
    Select Case Target.Value
        Case "PDPM"
            Range("AE" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case "RUGs IV"
            Range("AA" & Target.Row & ":AD" & Target.Row).Locked = True
        Case "Levels"
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case Else
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False
    End Select
    ActiveSheet.Protect Password:="Protection"
End Sub

So frustrated!!!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hello PokeCoder,

All cells by default have their Locked property set to True. Cells are only locked when the worksheet is protected. So, you need to select the cells the users can change and change the Locked property to False. Once you protect the worksheet, the user can freely tab to cells you have unlocked and edit them.
 
Upvote 0
Add this line:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range(ActiveSheet.ListObjects(1).Name & "[[#All],[Payment Type]]")) Is Nothing Then Exit Sub
    ActiveSheet.Unprotect Password:="Protection"
[COLOR=#0000ff]    Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False[/COLOR]
    Select Case Target.Value
        Case "PDPM"
            Range("AE" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case "RUGs IV"
            Range("AA" & Target.Row & ":AD" & Target.Row).Locked = True
        Case "Levels"
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case Else
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False
    End Select
    ActiveSheet.Protect Password:="Protection"
End Sub
 
Upvote 0
My sheet is protected. All cells in the table are unlocked for editing and the rest of the sheet is locked and protected. But I would like the VBA to lock certain ones based on the input in Column C
 
Upvote 0
Unfortunately it still does not lock the cells

Add this line:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range(ActiveSheet.ListObjects(1).Name & "[[#All],[Payment Type]]")) Is Nothing Then Exit Sub
    ActiveSheet.Unprotect Password:="Protection"
[COLOR=#0000ff]    Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False[/COLOR]
    Select Case Target.Value
        Case "PDPM"
            Range("AE" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case "RUGs IV"
            Range("AA" & Target.Row & ":AD" & Target.Row).Locked = True
        Case "Levels"
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case Else
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False
    End Select
    ActiveSheet.Protect Password:="Protection"
End Sub
 
Upvote 0
Unfortunately it still does not lock the cells

How?


What it does is unprotect the sheet, unlock all cells, depending on the data (PDPM, RUGs IV, Levels) then the portion you need is locked.


Or I don't understand what you need.
You could describe an example step by step.
 
Upvote 0
I must have pasted the code wrong. I just deleted everything and re-pasted it in and it works!!! Thank you so very much. I have been working on this for days!
 
Upvote 0
I did end up adding an error handler. After I started running my other codes. I also updated my other codes with Application.EnableEvents = False and ended them with Application.EnableEvents = True to prevent this Macro from running every time I ran another Macro (I have some to add rows, copy the worksheet, sort, and search). Again, thank you so very much for your assistance! You are a life saver!!
Here is the final code I used:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
    If Intersect(Target, Range(ActiveSheet.ListObjects(1).Name & "[[#All],[Payment Type]]")) Is Nothing Then Exit Sub
    On Error GoTo Cancelled
ActiveSheet.Unprotect Password:="Protection"
    Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False
    Select Case Target.Value
        Case "PDPM"
            Range("AE" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case "RUGs IV"
            Range("AA" & Target.Row & ":AD" & Target.Row).Locked = True
        Case "Levels"
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = True
        Case Else
            Range("AA" & Target.Row & ":AJ" & Target.Row).Locked = False
    End Select
    ActiveSheet.Protect Password:="Protection"
Cancelled:
    Exit Sub
End Sub
 
Upvote 0
I must have pasted the code wrong. I just deleted everything and re-pasted it in and it works!!! Thank you so very much. I have been working on this for days!

Dont worry. I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,179
Members
448,948
Latest member
spamiki

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