newuser2015
New Member
- Joined
- Sep 28, 2015
- Messages
- 2
I have code triggered to run as soon as the user enters a number in a certain range of cells. Is there a way to make it so that the cell that changed in this range is now the activecell?
So for example, if column A has the formula to add columns B + C and a user makes a change to B5 - how do I make cell A5 the activecell now which just changed because of the formula?
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("R2:R60000")) Is Nothing Then
My code which I am trying to get the cell that changed in this range to be the activecell
End If
End Sub
So for example, if column A has the formula to add columns B + C and a user makes a change to B5 - how do I make cell A5 the activecell now which just changed because of the formula?
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("R2:R60000")) Is Nothing Then
My code which I am trying to get the cell that changed in this range to be the activecell
End If
End Sub