View Single Post
 
Old 12-04-2014, 01:31 PM
charlesdh charlesdh is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Apr 2014
Location: Mississippi
Posts: 382
charlesdh is on a distinguished road
Default

Hi,

This is a worksheet event code that may work when the data in "A1" changes.
Paste this in the worksheet code module for the sheet that you named as "Names".

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Mysheet As String
If Target.Address = "$A$1" Then
    Mysheet = Target.Text
    Sheets(Mysheet).Activate
    Range("A1").Select
End If

End Sub
Reply With Quote