Hyperlink to lowest text entry in table

ddub25

Well-known Member
Joined
Jan 11, 2007
Messages
625
Office Version
  1. 2019
Platform
  1. Windows
Hello

Can anyone help me with a Hyperlink formula that would take me to the lowest text entry in Column L in a table (the table is called "Table 2").

Dan
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi Dan,

Try this:
=HYPERLINK(MID(CELL("filename"),SEARCH("[",CELL("filename")), 255) & "!" & ADDRESS(MATCH(9.99E+307,$L:$L),COLUMN($L$1)), "Display Text")
 
Upvote 0
Hello

Can anyone help me with a Hyperlink formula that would take me to the lowest text entry in Column L in a table (the table is called "Table 2").

Dan
When you say "lowest text entry" do you mean the bottom-most (or LAST) text entry in the column?
 
Upvote 0
When you say "lowest text entry" do you mean the bottom-most (or LAST) text entry in the column?
Is this what you had in mind:

Book1
LM
2ALast Text Entry
3B_
4__
5__
6C_
7V_
8N_
9M_
10U_
11__
12__
13XX_
14__
15__
16__
17__
18__
19__
20__
Sheet1

This formula entered in M2:

=HYPERLINK("#L"&MATCH("zzzzz",L:L),"Last Text Entry")

When clicked, that hyperlink will take you to cell L13.
 
Upvote 0
Thanks very much for all your help. T.Valko I used yours, thanks again, very useful.

Dan
 
Upvote 0
Biff, :eeek: That is really slick! How does the # make "#L" evaluate differently that just "L" which doesn't work?
Thanks!

I'm not sure how that works. I've learned to use that by trial and error!

The # sign seems to tell the hyperlink that it must go to this position on this "page".

You may have seen the # sign used in URL hyperlinks. It seems to work the same way when used in Excel so this might be a "standard" use thing.

For example:

This URL hyperlink takes you to the entire page:

http://contextures.com/xlFunctions02.html

And this URL hyperlink with the # sign takes you to a specific location on that same page:

http://contextures.com/xlFunctions02.html#Trouble
 
Upvote 0
The # sign seems to tell the hyperlink that it must go to this position on this "page".

You may have seen the # sign used in URL hyperlinks. It seems to work the same way when used in Excel so this might be a "standard" use thing.

For example:

This URL hyperlink takes you to the entire page:

http://contextures.com/xlFunctions02.html

And this URL hyperlink with the # sign takes you to a specific location on that same page:

http://contextures.com/xlFunctions02.html#Trouble

Biff, Thanks for the explanation. The URL Hyperlink is also very cool and helpful to know.
In the future, anytime I get stuck on a formula, I'll try placing a magic # in front to see if I get lucky! ;)
Thanks again!
 
Upvote 0
Biff, Thanks for the explanation. The URL Hyperlink is also very cool and helpful to know.
In the future, anytime I get stuck on a formula, I'll try placing a magic # in front to see if I get lucky! ;)
Thanks again!
You're welcome! :cool:
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,283
Members
452,902
Latest member
Knuddeluff

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