MrHuge
Board Regular
- Joined
- Jun 23, 2005
- Messages
- 219
Hi, i have the following code
What i am trying to do is delete the other cells contents when something is entered into the other cell, but it gets stuck in a loop, any suggestions would be fantastic.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("FilterClient")) Is Nothing Then GoTo FilterProject
'Range("FilterProject").Clear
'Run "InsertRow"
Exit Sub
FilterProject:
If Intersect(Target, Range("FilterProject")) Is Nothing Then GoTo theend
'Range("FilterClient").Clear
'Run "InsertRow"
Exit Sub
theend:
End Sub