KyleJackMorrison
Board Regular
- Joined
- Dec 3, 2013
- Messages
- 107
- Office Version
- 365
- 2021
- 2019
- Platform
- Windows
Hello,
I have a code that will activate in a set range where the words "complete" are changed. I would like the active cell to select that row, however only from columns B:AB. All i have found is how to select the entire row.
TIA
I have a code that will activate in a set range where the words "complete" are changed. I would like the active cell to select that row, however only from columns B:AB. All i have found is how to select the entire row.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)If Intersect(Target, Range("Z3:Z602")) Is Nothing Then Exit Sub
If Target = "Completed" Then
Target.Select
End If
'Select active row from B:AB
End Sub