Hi @ NathanA
I'm sorry, I was testing on column E->G instead of N->W, just to have them closer...my mistake. So change that line to:
If Intersect(Target, Range("N:W")) Is Nothing Then
Now, whenever you change the value of any cell in columns N through W, the code will be triggered.
Remember that you need an "exact match" for the text in C(i): "Charter (lite)" to lock the cells in that row(i).
Perhaps you can be interested in a small variation, and trigger the code whenever the text in C(i) STARTS with the text "Charter", then you can change the line:
If Range("C" & i).Value = "Charter (lite)" Then
to this:
If Range("C" & i).Value Like "Charter*" Then
Bookmarks