erutherford
Active Member
- Joined
- Dec 19, 2016
- Messages
- 453
My debugging features don't appear to be working.
Wrote some simple code just to work with.
Now the code gives a "argument not optional" error and the debug choices do not work!
any ideas?
2013 version
Wrote some simple code just to work with.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target.Range("A1:A10")) Is Nothing Then
MsgBox "Nothing in here"
Else
MsgBox "something here"
End If
End Sub
Now the code gives a "argument not optional" error and the debug choices do not work!
any ideas?
2013 version