View Single Post
 
Old 11-06-2014, 09:57 AM
whatsup whatsup is offline Windows 7 64bit Office 2010 32bit
Competent Performer
 
Join Date: May 2014
Posts: 137
whatsup will become famous soon enough
Default

Hi @all

Use Intersect() to verify if the changed cell in deed is the one which shall trigger a certain Selection. The rest is easy:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("K12")) Is Nothing Then
        Range("G11").Select
    End If
 
End Sub
Changing the value in K12 and pressing "Enter" will select G11.

Cheers
Reply With Quote