Forum Discussion
Tony-Morris85
Apr 27, 2021Copper Contributor
Excel Hyperlinks
Hi..... I'd like to use a Hyperlink to a different sheet but move down the cells automatically So, in the first cell in sheet1 I'd like to Hyperlink to Sheet2 cell A1 But then in the second cell i...
- Apr 27, 2021
For example, enter the following formula in Sheet1 cell A1:
=HYPERLINK("#Sheet2!A"&ROW())
Fill down.
HansVogelaar
Apr 27, 2021MVP
For example, enter the following formula in Sheet1 cell A1:
=HYPERLINK("#Sheet2!A"&ROW())
Fill down.
- DAHAWOR1953Nov 03, 2022Copper ContributorA similar scenario but I want to hyperlink to a cell in the same worksheet. ie From cell R3 to Q75 and fill down the formula to 34 rows. (R4 to Q76 etc.) Tried =HYPERLINK( "#Q75!Q"&ROW()) Returns Reference isn't valid.
- HansVogelaarNov 03, 2022MVP
Let's say the sheet is named Sheet 1. In R3:
=HYPERLINK("#'Sheet 1'!Q"&ROW()+72)
Fill down.
- DAHAWOR1953Nov 03, 2022Copper ContributorOf course - thank you for the speedy reply
- Tony-Morris85Apr 28, 2021Copper Contributor
Thank you HansVogelaar That works perfectly