Results 1 to 5 of 5

Thread: Using VLookup to give Hyperlink to a cell in another worksheet

  1. #1
    Join Date
    Jun 2011
    Posts
    109

    Using VLookup to give Hyperlink to a cell in another worksheet

    Please some help me to succeed. I have done many researches on internet but did not succeed. My issue is that I am trying to link the cell from one worksheet to another worksheet based on matching values with the help of Hyperlink function. I have done this hyperlink manually up till know but I want a dynamic formula or alternative using VLookup. Please provide necessary help.

  2. #2
    Join Date
    May 2009
    Posts
    637

    Re: Using VLookup to give Hyperlink to a cell in another worksheet

    You can use the below formulas to give Hyperlink to a cell in another worksheet using VLookup.

    • In Sheet1- A2:

      =HYPERLINK("#INDEX(sheet2!A:A,MATCH(100,Sheet2!A:A,0))",100)
    • For adjacent columns Sheet1- C2:

      =HYPERLINK("#INDEX(Sheet2!A:A,MATCH("&A2&",Sheet2!A:A,0))","View "&A2)

  3. #3
    Join Date
    May 2009
    Posts
    511

    Re: Using VLookup to give Hyperlink to a cell in another worksheet

    If you are still unable to use VLookup to give Hyperlink to a cell in another worksheet then try the following:

    Code:
    This is the easiest formula you can use:
    
    =IF(A1="","",HYPERLINK("["&MID(CELL("filename"),SEARCH("[",CELL("filename"))+1, 
    SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&"]
    'Sheet2'!A"&MATCH(A1,Sheet2!$A$1:$A$295,0),"Link"))
    
    If the range you were searching in on Sheet2 started at 
    A2 then you would have to add 1 (I've underlined it below)
    
    =IF(A1="","",HYPERLINK("["&MID(CELL("filename"),SEARCH("[",CELL("filename"))+1, 
    SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&"]
    'Sheet2'!A"&MATCH(A1,Sheet2!$A$1:$A$295,0)+1,"Link"))

  4. #4
    Join Date
    May 2009
    Posts
    543

    Re: Using VLookup to give Hyperlink to a cell in another worksheet

    • If you want to change the cell then you have to change values in two cells.

    =IF(A1="","",HYPERLINK("["&MID(CELL("filename"),SEARCH("[",CELL("filename"))+1, SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&"]'Sheet2'!A"&MATCH(A1,Sheet2!$A$1:$A$295,0),"Link"))

    • If you want to change the column that it points to you need to change the 2 values underlined below:


    =IF(A1="","",HYPERLINK("["&MID(CELL("filename"),SEARCH("[",CELL("filename"))+1, SEARCH("]",CELL("filename"))-SEARCH("[",CELL("filename"))-1)&"]'Sheet2'!A"&MATCH(A1,Sheet2!$A$1:$A$295,0),"Link"))

  5. #5
    Join Date
    Apr 2009
    Posts
    569

    Re: Using VLookup to give Hyperlink to a cell in another worksheet

    Just adjust the B range as I have done below:

    1. Sheet1-A2:
      =HYPERLINK("#INDEX(sheet2!B:B,MATCH(100,Sheet2!A:A,0))",100)
    2. Sheet2-B2:
      =HYPERLINK("#INDEX(Sheet1!A:A,MATCH("&A2&",Sheet1!A:A,0))",50)

Similar Threads

  1. How to get multiple values of Vlookup in Single Cell
    By Henriksen in forum MS Office Support
    Replies: 4
    Last Post: 25-02-2012, 11:02 AM
  2. Want to hyperlink only one word in a cell of Excel
    By Iyyappan in forum MS Office Support
    Replies: 2
    Last Post: 23-02-2012, 07:24 PM
  3. How to use VLOOKUP IF in cell that contains Text
    By RYAN$ in forum MS Office Support
    Replies: 2
    Last Post: 11-01-2012, 04:06 PM
  4. How to stretch only one cell in Microsoft Excel Worksheet
    By AbiaA in forum MS Office Support
    Replies: 2
    Last Post: 05-01-2012, 06:04 PM
  5. copy a hyperlink to another cell
    By aya2002 in forum Windows Software
    Replies: 2
    Last Post: 21-03-2010, 03:37 AM

Tags for this Thread

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
  •  
Page generated in 1,713,513,322.52806 seconds with 17 queries