In Google Sheets, I'm trying to write a QUERY which outputs a column displaying a hyperlink which links you to the cell pulled in by the QUERY, in another tab on the same sheet.
Example (all within the same Sheet):
Tab 1:
**Name**
Chandler
Ross
Joey
Utilizing the hyperlink() function as I read from this question, I've been able to link to another tab within the same sheet by hardcoding the hyperlink formula. But how can you incorporate this within a QUERY?
Tab 2: (my attempt but errors out)
=QUERY(Sheet1!A:A,"SELECT hyperlink("#gid=123456789range=A2", A2)")
Desired Output:
**Name**
Chandler [hyperlinked to cell A2]
Ross [hyperlinked to cell A3]
Joey [hyperlinked to cell A4]