• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

select of tab name through data validation

roypabitra

Member
Respected Sir,

How I Creat a Sheet name list through data validation where I select a Sheet and go to the selecting sheets. Please help me for the above

Thanks & Regards

Pabitra
 
List of worksheet names are provided in column I starting from row number 2 until 11 and I have created a drop down list in cell D3

In the Worksheet_Change event for Sheet1, I have written the following code to navigate to the selected sheet...
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Row = 3 And Target.Column = 4 Then
        If Target.Value <> "" Then
            ThisWorkbook.Worksheets(Target.Value).Activate
        End If
    End If
End Sub

Hope this helps!!
 

Attachments

  • WorksheetNavigation.xlsm
    22 KB · Views: 1
Back
Top