I have this code:
If Not (Application.Intersect(Target, Range("E2:F5000")) Is Nothing) Then
If StrComp("pp voice", Target.Value, vbTextCompare) = 0 Then
Target.Value = "PP Voice"
'disable app activation cell
End If
End If
That code is fine, does what it's supposed to. What I also need it to do, is disable the cell in the same row from column M. Like disable it and fill it Grey or something.
Regards, Ben.