Excel hyperlink to a specific cell

后端 未结 3 953
长发绾君心
长发绾君心 2020-12-05 20:45

I need to hyperlink a cell in one spreadsheet to a corresponding cell in another spreadsheet. So for example, C7 in sheet1 has a hyperlink that will bring you to C7 in sheet

3条回答
  •  既然无缘
    2020-12-05 21:03

    Sorry to nitpick, it also can look like this:

    " - starting quote
    # - local book (spreadsheet)
    'Sheet2' - name of sheet you are going to (has to be in single quotes)
    !C7 - cell in the other sheet you are trying to go to
    "- ending quote
    , - separating comma used in the hyperlink syntax
    "click" - link text to appear in cell
    

    Final function syntax:

    =HYPERLINK("#'Sheet2'!C7","click")
    

提交回复
热议问题