Excel hyperlink to same sheet

ashcosta1

New Member
Joined
Nov 4, 2021
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
I have an excel workbook with 2 sheets. Sheet1 and Sheet2. I want to stay on sheet1 and create a hyperlink to sheet2 but I want the information that is available in sheet2 to be displayed in sheet1 itself once I click the link... how can I do this?
 

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.
Hi Ashcosta1,

HYPERLINK(link_location,friendly_name) can be used.

Let's assume you want to link to Sheet2 cell A10 and display its contents. The formula would be
Excel Formula:
=HYPERLINK("#Sheet2!A10",Sheet2!A10)
so the friendly name would be the contents of Sheet2 A10 and if you click it it will jump to that cell. The "#" prefix says Sheet2 is in the same workbook.

Excel requires sheet names containing a space be wrapped in single quotes so it's always good practice to wrap the sheet name in single quotes in case it is ever renamed. So it would be
Excel Formula:
=HYPERLINK("#'Sheet 2'!A10",'Sheet 2'!A10)

I can imagine that you may want to search Sheet2 for something and then link to that location so you can build the HYPERLINK using other functions. Here I enter my animal into Sheet1 A2 and build the hyperlink in B2 which find that animal in Sheet2 column D and links to the same row in column A of Sheet2

Ashcosta1.xlsx
ABCD
1NumberData
222222Dog
3
4
5
633333Cat
7
8
9
1044444Mole
11
Sheet2


Ashcosta1.xlsx
ABC
1Look in Sheet2 Column DContents
2Cat33333
3
Sheet1
Cell Formulas
RangeFormula
B2B2=HYPERLINK("#'Sheet2'!$A$"&MATCH($A$2,Sheet2!D:D,0),INDEX(Sheet2!A:A,MATCH($A$2,Sheet2!D:D,0)))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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