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

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
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,216,106
Messages
6,128,863
Members
449,473
Latest member
soumyahalder4

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