How to Add a Link in Excel: Hyperlinks, Cell References, and More
Adding a link in Excel sounds simple — and for basic cases, it is. But Excel supports several distinct types of links, and knowing which one fits your situation changes the approach entirely. Whether you're connecting to a website, jumping to another cell, linking to a file, or creating an email shortcut, each method has its own steps and behavior.
What "Adding a Link" Actually Means in Excel
Excel uses the term hyperlink to cover several different connection types:
- Web URLs — linking to an external website or web resource
- Cell references — jumping to a specific cell or range within the same workbook
- External file links — opening another document from within Excel
- Email addresses — launching a new email to a preset address
- Named locations — linking to a defined name or table within a workbook
These all live under the same menu, but they behave differently and serve different purposes.
How to Insert a Basic Hyperlink in Excel
The most common method works across Excel for Windows, Mac, and the web version:
- Select the cell where you want the link to appear
- Right-click and choose Link or Hyperlink (the label varies slightly by version)
- Alternatively, use the keyboard shortcut Ctrl + K on Windows or ⌘ + K on Mac
- The Insert Hyperlink dialog box opens
From here, you'll see options in the left panel:
| Option | What It Does |
|---|---|
| Existing File or Web Page | Links to a URL or local/network file |
| Place in This Document | Links to a cell, range, or sheet within the workbook |
| Create New Document | Creates and links to a new file |
| E-mail Address | Sets up a mailto: link |
Fill in the Text to display field at the top — this is what the reader sees in the cell. Then enter your destination in the address field and click OK.
Linking to a Website or URL
In the Insert Hyperlink dialog, select Existing File or Web Page, then type or paste the full URL into the address bar at the bottom. Always include https:// — Excel doesn't always auto-complete the protocol, and a missing prefix can break the link.
🔗 The cell will display underlined blue text by default, though this formatting can be changed through cell styles.
To test the link, hold Ctrl and click the cell (on Mac, just click). In Excel Online, a single click typically activates it.
Linking to Another Cell or Sheet in the Same Workbook
This is where Place in This Document comes in. After selecting that option:
- Type the cell reference directly (e.g.,
B14) in the cell reference field - Choose the specific sheet from the list shown below it
- Combine both to jump to a specific cell on a specific sheet (e.g., Sheet2, cell D5)
This is useful for dashboards, table of contents sheets, or navigating large workbooks without scrolling.
Using the HYPERLINK Function Instead
Excel also has a built-in HYPERLINK function, which gives more control — especially when the destination URL or path needs to be dynamic (built from other cell values):
=HYPERLINK("https://example.com", "Visit Site") The first argument is the destination; the second is the display text. You can replace either with a cell reference:
=HYPERLINK(A2, B2) This is particularly useful in data tables where each row needs a unique link pulled from existing data. The HYPERLINK function creates a clickable cell just like the dialog method, but it updates automatically when the source cells change.
Linking to an External File
In the Existing File or Web Page panel, use the file browser to navigate to the target document. Excel will insert the full file path.
Key consideration: file path links are sensitive to folder structure. If the linked file moves, the link breaks. For shared or collaborative files, network paths (e.g., \serverfolderfile.xlsx) or cloud-hosted URLs tend to be more reliable than local drive paths.
Adding Email Links
Select E-mail Address in the dialog, enter the email address, and optionally pre-fill a subject line. When clicked, this opens the user's default email client with a new message addressed to that contact — a common feature in internal directories or contact sheets.
Editing and Removing Links
Right-click any linked cell to see options:
- Edit Hyperlink — reopens the dialog to change the destination or display text
- Remove Hyperlink — strips the link but keeps the cell text
- Open Hyperlink — follows the link directly
You can also select a linked cell and press Ctrl + K to reopen the edit dialog.
What Changes Depending on Your Setup 🖥️
A few variables affect how hyperlinks behave in practice:
- Excel version: Excel 365, Excel 2019, Excel 2016, and Excel Online all support hyperlinks, but the dialog layout and available options differ slightly
- File format: Links in
.xlsxfiles behave differently than in.xlsor.csv— CSV files strip hyperlinks entirely when saved - Shared workbooks: In collaborative settings (SharePoint, OneDrive), file path links pointing to local drives won't work for other users
- Security settings: Some organizations restrict external link activation through Excel's Trust Center settings, which can prevent links from opening
Whether a hyperlink setup works smoothly for your workbook depends heavily on where the file lives, who else accesses it, and how the destination content is hosted or stored.