+ Reply to Thread
Results 1 to 3 of 3

Hyperlink in one excel sheet to other sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    06-04-2015
    Location
    Hyderabad
    MS-Off Ver
    Office 13
    Posts
    17

    Hyperlink in one excel sheet to other sheet

    Hi All,

    Could someone please help me in getting a solution to this.

    I have 2 sheets in excel file. If I click on a cell in sheet 1 , it should redirect me to same cell of other sheet. I have values in almost 200 cells. How do I do that without manually making it hyperlink and editing each one.

    Thanks,
    Shanck

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Hyperlink in one excel sheet to other sheet

    The HL is fairly simple, but why would you want to link in the 1st place?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    02-09-2014
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    60

    Re: Hyperlink in one excel sheet to other sheet

    Try below code. Please change sheet names, row and column number as per your requirements.

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Target.Column >= 1 And Target.Column <= 10 Then
            If Target.Row >= 1 And Target.Row <= 200 Then
                ThisWorkbook.Worksheets("Sheet2").Activate
                ThisWorkbook.Worksheets("Sheet2").Cells(Target.Row, Target.Column).Select
            End If
        End If
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 10-27-2015, 08:59 AM
  2. Replies: 0
    Last Post: 10-27-2015, 08:57 AM
  3. [SOLVED] Only unhide sheet when hyperlink is clicked that directs to the sheet
    By Xx7 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 01-12-2014, 05:38 AM
  4. [SOLVED] Create new sheet from template, auto fill from index sheet and hyperlink
    By RichTea88 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-06-2013, 04:57 AM
  5. Macro to create sheet, rename sheet, and hyperlink to it
    By prescottfarm in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-31-2013, 04:46 PM
  6. Replies: 2
    Last Post: 01-13-2012, 04:59 PM
  7. Copy Hyperlink Address from one Sheet to New Sheet via VB script
    By clmarquez in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-18-2009, 08:47 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1