Hi All,
I am using the Worksheet Change for the first time! If a specific cell on a specific worksheet changes (from “No” to “Yes”), I want to make certain cells unlocked and formatted gray.
I found the specific worksheet, right-clicked, selected “View Code” and then selected the “Change” … However, when I changed B7 to “Yes”, nothing happens!
Here is my code:
Private Sub Worksheet_Change(ByVal Target As Range)
‘ Check if user changed B7
If Not Intersect(Target, Range(“B7”)) Is Nothing Then
‘ Temporarily disable other events
Application.EnableEvents = False
‘ Code to change other cells goes here
Range(“A10:A17”).Select
With Selection.Interior
.ColorIndex = 15
.Pattern = xlSolid
End With
Selection.Locked = False
Selection.FormulaHidden = False
Range(“A10”).Select
‘ Enable other events again
Application.EnableEvents = True
End If
End Sub
I will be using this for multiple cells on this sheet — but, I wanted to get at least one cell working before continuing.
As always, any help is appreciated …
–Cindy