Buat tautan yang dapat diklik.
=HYPERLINK(link_location, [friendly_name])
| Parameter | Deskripsi |
|---|---|
link_location |
The path to the file or page to be opened. |
friendly_name |
[optional] The link text to display in a cell. |
To link to another cell in the same worksheet, prefix the cell with "#":
=HYPERLINK("#Z100","link to Z100") // cell in same sheet
To link to another sheet in the same workbook, use "#" with the Sheet name like this
=HYPERLINK("#Sheet2!A1","Sheet2") // sheet2 in same workbook
If the sheet name contains a space, you'll get an invalid reference error with the formula above. In that case, you'll need to enclose the sheet name
=HYPERLINK("#'Sheet 2'!A1","Sheet 2") // sheet name with space
To link to https://exceljet.net/ with the text "exceljet":
=HYPERLINK("https://exceljet.net/","exceljet")
To link to a valid email address in A1, you can concatenate "mailto:" like this:
=HYPERLINK("mailto:"&A1,"email") // link to email address in A1
With two email addresses in A1 and A2, you can create a link like this:
=HYPERLINK("mailto:"&A1&","&B1,"email") // two emails