Turn last non-blank cell address formula into a Hyperlink

2Took

Board Regular
Joined
Jun 13, 2022
Messages
203
Office Version
  1. 365
Platform
  1. Windows
Formula returns address of last non-blank cell in column A: ="A"&MATCH(2,1/(A:A<>""),1)
e.g.: A1000

Trying to turn it into a Hyperlink with: =HYPERLINK("A"&MATCH(2,1/(A:A<>""),1))
results in below error, when clicking on it.

2022-09-13_13h21_41.png


How to turn last non-blank cell address formula into a Hyperlink that works?
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
You need to prefix the reference with the # symbol in order for it to work.

3 Versions of your formula, the first 2 being more efficient.

Numeric data in column A (including dates, times, etc).
Excel Formula:
=HYPERLINK("#A"&MATCH(1e+100,A:A)))
Text data in column A
Excel Formula:
=HYPERLINK("#A"&MATCH(REPT("z",255),A:A))
Mix of text and numeric data in column A
Excel Formula:
=HYPERLINK("#A"&MATCH(2,1/(A:A<>""),1))
 
Upvote 0
Solution
=HYPERLINK("#A"&MATCH(E1+100,A:A))
returns
#N/A
I need it to be a hyperlink, showing address of last non-blank cell, that can be clicked on and it should take you to that cell.
 
Upvote 0
Third one worked. Thanks!

=HYPERLINK("#A"&MATCH(2,1/(A:A<>""),1))
 
Upvote 0
=HYPERLINK("#A"&MATCH(E1+100,A:A))
returns
#N/A
I need it to be a hyperlink, showing address of last non-blank cell, that can be clicked on and it should take you to that cell.
Probably didn't work because you've typed the formula incorrectly. If you look at my post, it says 1e+, not E1+
 
Upvote 0
=HYPERLINK("#A"&MATCH(1E+100,A:A))
same #N/A
 
Upvote 0
What about the second formula?

If you have formula blanks in column A then that one might not pick up the correct row, but this one will.
Excel Formula:
=HYPERLINK("#A"&XMATCH("?",A:A,2,-1))

Please bear in mind that I can not see your screen and I am not psychic. What I know about your data is what you tell me, nothing more.
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,547
Members
449,089
Latest member
davidcom

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