简体   繁体   中英

Hyperlink to a cell on another sheet in Excel

I am working on Excel report in which I need to pass a link which can take me to a cell referenced.

In below example, I have two sheets on same workbook. Now if I click on cell "A1" on Sheet:1, then it should take me to cell "E1" on Sheet:2.

I know by paste special I can pass hyperlink, but tricky part is data on Sheet:2 is dynamic so I can't go that route.
After looking on Google, I have found out multiple things, so I clubbed them together but it is throwing error "Reference is not valid" .

Here is the formula that I've used on cell "A1" on Sheet:1:

=HYPERLINK("[Sample.xlsx]Sheet:2!(ADDRESS(MATCH(""ABC"",BEFORE,0),MATCH(""ABC"",BEFORE,0),1))","ABC") 

Here BEFORE is a name range that covers A1 to E1.

Sheet:1

    a      b      c      d      e

1.  abc

Sheet:2

    a      b      c      d      e

1.  x      x      x      x     abc  

Appreciate your inputs.

=HYPERLINK("[Sample.xlsx]'Sheet2'!" & ADDRESS(1,MATCH("abc",BEFORE,0)),"ABC")

如果工作表名称中可能有空格,请确保在名称两边加上单引号。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM