When I change a value in the column specified (column 19), the code takes a while to run but seems to work properly, then throws the error. This also causes Excel to crash repeatedly as I'm trying to debug the code.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 19 Then
If Target <> "yes" Then
Target = "no"
End If
End If
End Sub
I've tried changing Target to activecell, using explicit references, etc and everything seems to throw the same error and crash Excel.
Any Ideas?