Hyperlink to a cell that have specific text

Unexpc

Active Member
Joined
Nov 12, 2020
Messages
496
Office Version
  1. 2019
Platform
  1. Windows
Hi guys
Anyway create hyperlink that linked to a specific text? (The range of sheet is changable and this text may A10 and after entered data will be A11 and ...)
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Sure, try something like:
Code:
=HYPERLINK("#'Sheet1'!A"&MATCH("String to Find",A:A,0),"What to display")
 
Upvote 0
Sure, try something like:
Code:
=HYPERLINK("#'Sheet1'!A"&MATCH("String to Find",A:A,0),"What to display")
I try but not work, i insert this =HYPERLINK("#'Sheet1'!A"&MATCH("CustomerA",A:A,0),"CustomerA")
what am i wrong?
 
Upvote 0
Probably the sheet name.

Try this more generic approach: =HYPERLINK("#'This Sheet Name'!A"&MATCH("CustomerA",'This Sheet Name'!A:A,0),"CustomerA")

where This Sheet Name is the name of the tab where you're searching for Customer A.
 
Upvote 0
Solution
Probably the sheet name.

Try this more generic approach: =HYPERLINK("#'This Sheet Name'!A"&MATCH("CustomerA",'This Sheet Name'!A:A,0),"CustomerA")

where This Sheet Name is the name of the tab where you're searching for Customer A.
You Are Right, Thank You
 
Upvote 0

Forum statistics

Threads
1,214,625
Messages
6,120,598
Members
448,973
Latest member
ksonnia

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