R
Raj
Hi,
I am using the worksheet change event to run code when the value in a
cell in Column C is changed..
If Not Application.Intersect(Target, Me.Range("c2:c65536")) Is Nothing
Then
If Me.Cells(Selection.Row, 3).Value <> "" Then
Do this.....
End If
End If
The code runs if Enter key is pressed but will not run if the down
arrow key is pressed.
What can I do to make the code run when the arrow key is pressed?
Thanks in advance for the help.
I am using the worksheet change event to run code when the value in a
cell in Column C is changed..
If Not Application.Intersect(Target, Me.Range("c2:c65536")) Is Nothing
Then
If Me.Cells(Selection.Row, 3).Value <> "" Then
Do this.....
End If
End If
The code runs if Enter key is pressed but will not run if the down
arrow key is pressed.
What can I do to make the code run when the arrow key is pressed?
Thanks in advance for the help.