Link between two dynamic points

lindseya66

New Member
Joined
Aug 14, 2023
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am having trouble with creating a hyperlink between two dynamic points.

Sheet 2 is updated with new data every night.

Sheet 1 is a smaller subset of the data, that also gets updated every night based on the data from sheet 2. The idea is to click on the project id on sheet 1 and it will take you to the project ID on sheet 2.

Any help would be appreciated!!
 

Attachments

  • 2023-08-14_09-22-02.png
    2023-08-14_09-22-02.png
    54.7 KB · Views: 6
  • 2023-08-14_09-23-07.png
    2023-08-14_09-23-07.png
    83.9 KB · Views: 6

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Suppose your other table is on Sheet2. This formula in an empty column takes you to the first cell containing that product ID:
Excel Formula:
=HYPERLINK("#"&CELL("address",INDEX(XLOOKUP(A2,Sheet2!$A$2:$A$13,Sheet2!$A$2:$A$13),1)),"Link to " &A2 )
 
Upvote 0
Solution
Suppose your other table is on Sheet2. This formula in an empty column takes you to the first cell containing that product ID:
Excel Formula:
=HYPERLINK("#"&CELL("address",INDEX(XLOOKUP(A2,Sheet2!$A$2:$A$13,Sheet2!$A$2:$A$13),1)),"Link to " &A2 )
Thank you! I will give it a try.
 
Upvote 0
=HYPERLINK("#"&CELL("address", INDEX(XLOOKUP(A2,Sheet2!$A$2:$A$13, Sheet2!$A$2:$A$13),1)), "Link to" &A2)

This is what I typed in. It returns N/A# error.

When I do the evaluate calculation it is saying that there is an issue with the XLookUp part of the calc. Any advise?? Please and thank you!!
 
Upvote 0
It means XLOOKUP does not find a matching ID in the other worksheet.
Try inserting just the XLOOKUP bit to ease trouble-shooting.
In addition: make sure the second and third argument of XLOOKUP point to all data in the other sheet and point to the same cells.
 
Upvote 0

Forum statistics

Threads
1,215,111
Messages
6,123,159
Members
449,098
Latest member
Doanvanhieu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top