Forum Discussion

lucyhg's avatar
lucyhg
Copper Contributor
Mar 23, 2022
Solved

Returning a single cell value from a separate sheet

Hi,   I need to return a value from a specific cell on a different sheet. I have found that I need to use the INDIRECT formula as I need to return these values from several sheets and don't want to...
  • HansVogelaar's avatar
    Mar 23, 2022

    lucyhg 

    Since the name of the worksheet contains a space, you must enclose it in single quotes:

    =INDIRECT("'Week " & ROW(A101) & "'!E12")

    This will return the value of cell E12 on the sheet named Week 101