Draggable Hyperlink Formula with Index

KranerRyan

New Member
Joined
Sep 17, 2016
Messages
18
I would like the formula, =HYPERLINK("#INDEX('Dec17'!$1:$1,(ROW(C2)-1)*8+36)",INDEX('Dec17'!$2:$2,(ROW(B2)-1)*8+38)), to work with the fill handle. When I drag it down the name updates, but the link remains the same. I need the C2 to change to C3, C4, etc...

Any workarounds? Thanks!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I am not familiar with the #INDEX notation, or why the first part of your hyperlink formula is in quotes instead of the second, but this formula should enable dragging the formula and having the C2 reference change:

Code:
=HYPERLINK("[URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=INDEX]#INDEX[/URL] ('Dec17'!$1:$1,(" & INDIRECT("ROW(" & C2 & ")") & )-1)*8+36)",INDEX('Dec17'!$2:$2,(ROW(B2)-1)*8+38))
 
Upvote 0

Forum statistics

Threads
1,215,548
Messages
6,125,468
Members
449,230
Latest member
ASBeard

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