I am trying to get VBA to change the cell focus on the sheet. I can get it to work with one condition, but not two or more.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("c2:c5000")) Is Nothing Then Target(1, 8).Select
If Not Intersect(Target...