How can I get a link to cell in sheets with a formula or appscript? I have a column A with 200 rows and want to get the links of all cells populated in column B
Asked
Active
Viewed 1,034 times
2 Answers
1
try:
=ARRAYFORMULA(IF(B:B="",,HYPERLINK("#gid=1734824104&range=B"&ROW(B:B), B:B)))
where gid number can be found here:

player0
- 124,011
- 12
- 67
- 124
0
Right click on the first cell (A1) and copy the link to that cell. Then use that link like the example below and drag this down.
=CONCATENATE("https://docs.google.com/spreadsheets/d/a1a1a1a1a1a1/edit#gid=111111&range=A",ROW()))

RemcoE33
- 1,551
- 1
- 4
- 11