I'v got a private sub for a worksheet change that looks up to see if values are blank which decides if the user can do a change or not.
Heres my code so far:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> 2 Then Exit Sub
If...