Protect Certain Cells based on Cell Value

Bravurian17

New Member
Joined
Apr 16, 2009
Messages
34
I want to protect cells that contain an "X" in my range. How do I do this? I am self-taught when it comes to VBA, so whatever you can give me I should be able to understand it. Thanks in advance! :cool:
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
What is the range to treate
 
Upvote 0
Hi, Bruvarian17,
WELCEOM to the BOARD!!!!!

try this
Code:
Sub protect_some_cells()
Dim c As Range
Dim firstAddress As String
Dim rng As Range
 
'EDIT this line to your suits
Set rng = ActiveSheet.UsedRange
 
    With rng
        Set c = .Find("x", LookIn:=xlValues, LookAt:=xlPart, MatchCase:=False)
        If Not c Is Nothing Then
            firstAddress = c.Address
            Do
            c.Locked = True
            'c.Interior.ColorIndex = 3
            Set c = .FindNext(c)
            Loop While Not c Is Nothing And c.Address <> firstAddress
        End If
    End With
End Sub
Check out the helpfiles for "find" (range) if you want to change something more.

kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,215,410
Messages
6,124,752
Members
449,186
Latest member
HBryant

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