How to hyperlink across multiple tabs(worksheets)

sivakr4056

New Member
Joined
Dec 21, 2015
Messages
5
Hi,

I have one excel it has 2 tabs

first tab has all data in column A(all are unique rows).
ex:
column A
A
B
C
D

in second tab column c has few rows(these rows are just part of first tab data)
Ex:
Column C
C
D

my requirement is , if I select row D(hyperlink) in second tab, I want to go to first tab automatically and display only D row.

please suggest me how can I do this

thanks in advance for your help
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Are you looking to go back to the first tab and filter everything but the value you clicked or only position in the value you clicked.

Please clarify so we can provide the appropriate assistance.

Cheers,

Angel
 
Upvote 0
Thanks Angel for your response

I am okay with either one, positioning at the selected one or filtered everything except selected in first tab.

But I want to do this dynamically on whole column C in second tab. Since I have lot of data in Column C in second tab.i provided above details only for example.
 
Last edited:
Upvote 0
Hi Sivakr4056,

Sorry for the late reply, here's a possible solution to you scenario:

Say you have a worksheet called All with the following data:
All

A
1
2A
3B
4C
5D
6E
7F
8G
9H
10I

<tbody>
</tbody>

And the second sheet called Few would have the link on column B next to the letter you want to link to like this:

Few

AB
1D#All!A5
2I
#All!A10

<tbody>
</tbody>

Spreadsheet Formulas
CellFormula
B1=HYPERLINK("#All!"&ADDRESS(MATCH(A1,All!$A:$A,0),1,4))
B2=HYPERLINK("#All!"&ADDRESS(MATCH(A2,All!$A:$A,0),1,4))

<tbody>
</tbody>

<tbody>
</tbody>


Excel tables to the web >> Excel Jeanie HTML 4


If you don't want to see the Link formula you can add a friendly name by modifying the formula to:
=HYPERLINK("#All!"&ADDRESS(MATCH(A1,All!$A:$A,0),1,4),"Link")

Hope it helps.

Angel

Thanks Angel for your response

I am okay with either one, positioning at the selected one or filtered everything except selected in first tab.

But I want to do this dynamically on whole column C in second tab. Since I have lot of data in Column C in second tab.i provided above details only for example.
 
Upvote 0

Forum statistics

Threads
1,214,539
Messages
6,120,100
Members
448,944
Latest member
SarahSomethingExcel100

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