confusion123
Active Member
- Joined
- Jul 27, 2014
- Messages
- 400
This event starts when a cell is changed:
This event starts when a cell is selected:
Is there any way I can have the first to run but not the second?
Adding
to the end of the first sub routine didn't help.
Thanks
Code:
Private Sub Worksheet_Change(ByVal Target As range)
This event starts when a cell is selected:
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As range)
Is there any way I can have the first to run but not the second?
Adding
Code:
Application.EnableEvents = False
to the end of the first sub routine didn't help.
Thanks