I', assuming this code will run if any cell on Sheet1 is changed? How do i change it to only run if a cell in J1:J15 is changed?
Code:
If Target.Cells.Count <> 1 Then Exit Sub
If Not Intersect(Target, Range("J1:J15")) Is Nothing Then
Select Case Target.Value
Case "Apple"
Call Kawhi
Case "Three"
Call Curry
End Select
End If
Last edited: