
Create a clickable link to a web page, file, email address, or cell location. HYPERLINK is useful for navigation, file access, and interactive workbook layouts.
The HYPERLINK function creates a clickable link in a cell. That link can open a website, a file, an email address, or a location inside the current workbook.
This makes HYPERLINK useful when a workbook is more than just a calculation sheet. It can help users jump between sections, open supporting documents, or launch related actions such as sending an email.
Useful for navigation, file links, websites, and email links inside a worksheet.
Returns a clickable cell result. If no friendly name is supplied, the destination text is usually displayed.
=HYPERLINK(link_location, [friendly_name])
link_location is the destination, and friendly_name is the text the user sees in the cell. For example, =HYPERLINK("https://excelclash.com","Open Site") creates a clickable link with the label Open Site.
For links inside the same workbook, the location usually starts with #. That tells Excel the destination is internal, such as #Summary!A1.
If you leave out friendly_name, Excel usually shows the destination itself. In many worksheets, adding a short label such as "Open File" or "Go to Summary" makes the sheet much easier to read.
HYPERLINK creates an action. Related functions may build text or return address information, but they do not create the click behavior by themselves.
| Function | Main Job | Returns | Use When |
|---|---|---|---|
HYPERLINK |
Create a clickable link | Interactive cell result | You want the user to click and open something |
ADDRESS |
Build a cell address as text | Text | You need an address string, not a clickable result |
CELL |
Return information about a cell | Text or number | You need metadata such as address or format |
FORMULATEXT |
Show the formula in a cell | Text | You want to inspect formula logic, not create navigation |
One common use of HYPERLINK is workbook navigation. A summary sheet can contain links to reports, logs, dashboards, or data-entry sections so users do not need to scroll or search manually. For large workbooks, this can make the file much easier to use.
Another useful pattern is building the destination from other cells. A workbook might store a folder path in one cell and a file ID in another. HYPERLINK can join those parts into one file link. This is helpful when many links follow the same structure and only one piece of the path changes.
HYPERLINK is also useful for mailto links. Instead of only opening websites or files, it can open the default email app with a prepared address, subject, or other parameters. That can be a nice touch in trackers, approval sheets, and project dashboards.
# for links inside the same workbook.This formula creates an internal jump link. The # at the start tells Excel the destination is inside the current workbook. This is useful for menus, contents pages, and dashboard navigation.
=HYPERLINK("#Summary!A1", "Go to Summary")
Create a link to google.com with the text "Search". Formula: =HYPERLINK("https://google.com", "Search").
This example uses the mailto: format, so clicking the result opens the email app instead of a browser or worksheet location. It is useful when a sheet needs a fast way to contact a person tied to the current record.
=HYPERLINK("mailto:hr@corp.com?subject=ID_101", "Email HR")
Link to cell A1 on the sheet Summary. Formula: =HYPERLINK("#Summary!A1", "Go to Summary").
This pattern builds a file path from text and cell values. It is useful when the workbook stores document IDs and each ID should open a related file, such as a PDF invoice or drawing.
=HYPERLINK("N:/Vault/" & A1 & ".pdf", "Open Blueprint")
Create a mailto link to audit@comp.com. Formula: =HYPERLINK("mailto:audit@comp.com", "Email Auditor").
Sometimes the destination is already stored in the sheet, and HYPERLINK just needs to turn it into a clickable result. This keeps the link logic flexible because the target can change without rewriting the formula itself.
=HYPERLINK("#" & B1, "Go to Latest")
Link to a PDF using the SKU in A1. Formula: =HYPERLINK("C:/Vault/" & A1 & ".pdf", "View PDF").
# when linking inside the same workbook.Tell your friends about this post