Dynamic linking of text to another worksheet via a search function

jtwinte

New Member
Joined
May 2, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I am wanting to hyperlink text from one sheet to search for that corresponding text on another sheet. I've found how to manually link text to a cell on another sheet but is there a way to make this dynamic and incorporate a search function so i do not have to manually carry out the linking of text to its corresponding cell on another sheet?

ie i want to link the text "library" from cell A3 in worksheet 1 to look up the corresponding cell in column A in worksheet 2 with "library" in it.

Thanks
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Try this formula in cell B3 (in sheet 1)
- amend sheet name to name of worksheet 2
=HYPERLINK("#"&CELL("address",INDEX('Sheet Name'!A:A,MATCH("*"&A3&"*",'Sheet Name'!A:A,0))),"Jump to "&A3)


Hyperlink library1.jpg



the above finds library and hyperlinks to cell A4
Hyperlink to library.jpg
 
Upvote 0
Try this formula in cell B3 (in sheet 1)
- amend sheet name to name of worksheet 2
=HYPERLINK("#"&CELL("address",INDEX('Sheet Name'!A:A,MATCH("*"&A3&"*",'Sheet Name'!A:A,0))),"Jump to "&A3)


View attachment 12895


the above finds library and hyperlinks to cell A4
View attachment 12894
Thanks Yongle this is what I'm after but looking to be able to create the hyperlink in cell A3 from the word 'library' so the B column isnt needed. Is this possible?
 
Upvote 0
Put this formula in cell A3, amending Sheet Name

=HYPERLINK("#"&CELL("address",INDEX('Sheet Name'!A:A,MATCH("*"&"Library"&"*",'Sheet Name'!A:A,0))),"Library")
 
Upvote 0
Put this formula in cell A3, amending Sheet Name

=HYPERLINK("#"&CELL("address",INDEX('Sheet Name'!A:A,MATCH("*"&"Library"&"*",'Sheet Name'!A:A,0))),"Library")
Thanks Yongle that worked a treat!
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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