joshuafournier
Board Regular
- Joined
- Mar 3, 2012
- Messages
- 91
Good Morning,
I have a table that in column "O" if you click the cell it runs a macro. the issue I have is if I sort the table it also triggers the code.... is there a way around this?
I have a table that in column "O" if you click the cell it runs a macro. the issue I have is if I sort the table it also triggers the code.... is there a way around this?
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal target As Range)
If Selection.Count = 1 Then
If Not Intersect(target, Range("O4:O9999")) Is Nothing Then
ActiveCell.Value = "Activating"
Call LaunchIT("RedlineAssy")
End If
End If