Using Hyperlink

yallaire64

New Member
Joined
May 9, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi,
I'm trying to put an adress in an hyperlink function, it works if I put an actual adress :
=Hyperlink(Cell("adress",Deviation!A2893),B5), this activate the cell Deviation!A2893

But if I want to have it more automatic... I would like to replace Deviation!A2893 with ==Adress(match(B5,Deviation!A2:A5297,0),1,1,1,"Deviation") that returns Deviation!$A$2893

Any input would be appreciated.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hi, welcome to the forum!

You could try like this:
Excel Formula:
=HYPERLINK("#"&ADDRESS(MATCH(B5,Deviation!A:A,0),1,1,1,"Deviation"),B5)
 
Upvote 0
Solution
Wow... only "#", I missed it somewhere in the MS help pages !!!

Thanks that worked, here is the final formula !!!
=Hyperlink("#" & Adress(Match(B5,Deviation!A2:A5297,0)+1,1,1,1,"Deviation"),"Click here")
 
Upvote 0
I have another one on the subject...
How can I change Majors (in red below) with the value of cell F1 for instance.

=LIEN_HYPERTEXTE("#"&ADRESSE(EQUIV(A810,Majors!$A$2:$A$18012,0)+1,1,1,1,F$1),"OK")
 
Upvote 0
Hi, this is how I would do it:

Excel Formula:
=HYPERLINK("#'"&F$1&"'!A"& MATCH(A810,INDIRECT("'"&F$1&"'!$A$2:$A$18012"),0)+1,"OK")

Which in French (my assumption about your language settings) would be:

Excel Formula:
=LIEN_HYPERTEXTE("#'"&F1&"'!A"& EQUIV(A810;INDIRECT("'"&F1&"'!$A$2:$A$18012");0)+1;"OK")
 
Upvote 1

Forum statistics

Threads
1,216,126
Messages
6,129,007
Members
449,480
Latest member
yesitisasport

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