Forum Discussion

Ron_Westmoreland's avatar
Ron_Westmoreland
Copper Contributor
Nov 16, 2021

Return data from a cell in a linked worksheet

Hi.  I have a worksheet that has links to other sheets within the workbook.  Let's say Sheet 1 has a cell with a link to Sheet 2.  How do I return a value of a cell in Sheet 2 into Sheet A1 by referencing Sheet 1's linked cell address?  Basically a "go to sheet 2 and return the value of g31".  Thanks in advance.

3 Replies

  • Ron_Westmoreland 

    =INDIRECT("'" & C1 & "'!" & D1 & E1)

     

    With this formula you can dynamically enter sheet name in cell C1 and column number in D1 and row number in E1. In your example enter "Sheet 2" in C1 and "G" in cell D1 and "31" in cell E1.

     

    • Ron_Westmoreland's avatar
      Ron_Westmoreland
      Copper Contributor
      Also, which may complicate it further, the cell that references "Sheet 2" is a value returned from a filter.
    • Ron_Westmoreland's avatar
      Ron_Westmoreland
      Copper Contributor
      Thanks so much for the quick reply. Where in this formula does it reference the cell in Sheet 1 that I want to point to, that contains the link to Sheet 2? Would that reference be in your "C1"? Thanks.