XL Hyperlink to other worksheet using hyperlink function in excel
[PA] 업무자동화/[XL]Excel & VBA 2021. 7. 11. 11:3520210710 2222
REF
00 Basic
=HYPERLINK("[File]SheetName!A1", "NiceName" )
⇒ we need something to indicate "This File" in the place of [File]
01 Using # as This File - needs small quotation marks
=HYPERLINK("#'linked sheet name'!linked cell number","your message")
=HYPERLINK("#'Page 2'!A4","TEST")
(note) Above case, we use small quotation marks, becasue the sheet name has "space" in it. If we don't have spaces in the sheet name, we don't need the small quoation marks.(see below)
02 Using [.\] as This File - don't need small quotation marks
=HYPERLINK("[.\]Report!D4", "Click here to go to cell D4 of the Report tab")
'[PA] 업무자동화 > [XL]Excel & VBA' 카테고리의 다른 글
XL VBA Cheat Sheets (0) | 2021.10.11 |
---|---|
XL sum if 함수 - 사용자 정의 (0) | 2021.10.03 |
XL dependency trace, Precedent/Dependent (0) | 2021.05.19 |
XL dynamic images (0) | 2021.04.29 |
XL 3D formula (0) | 2021.04.28 |