Unlock Specific Cell if another cell in row has specific value

EAB1993

New Member
Joined
Nov 27, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I have been trying to find a macro that will unlock a cell in Col BA if the corresponding cell in Col I has the marker "M". But to remain locked if there is any other value in Col I. I have not been able to find one that works without giving me errors or unlocking too much.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Private Sub Worksheet_Change(ByVal Target As Range)

If Range("I4").Value = "M" Then
ActiveSheet.Unprotect ""
Range("BD4").Locked = True
ElseIf Range("I4").Value <> 0 Then
Range("BD4").Locked = False
ActiveSheet.Protect ""
End If

End Sub



This is what I have tried that doesnt work
 
Upvote 0

Forum statistics

Threads
1,215,108
Messages
6,123,131
Members
449,097
Latest member
mlckr

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