How to Create a Hyperlink in Excel: A Complete Guide
Hyperlinks in Excel aren't just for websites. You can link to other cells, sheets, files on your computer, email addresses, and external URLs — all from within a spreadsheet. Knowing which type of hyperlink fits your situation makes the difference between a cluttered workbook and one that's genuinely easy to navigate.
What Is a Hyperlink in Excel?
A hyperlink in Excel is a clickable element — attached to a cell or text — that takes you somewhere else when clicked. That destination could be:
- A website URL
- A specific cell or range in the same workbook
- A different sheet within the same file
- A separate file stored locally or on a network
- An email address that opens a new message
Excel stores hyperlinks differently from plain text. The cell displays the label you choose, while the underlying link points to the actual destination.
Method 1: Using the Insert Hyperlink Dialog (Most Common)
This is the most flexible approach and works across all major versions of Excel.
Steps:
- Click the cell where you want the hyperlink to appear
- Go to the Insert tab on the ribbon
- Click Link (sometimes labeled Hyperlink)
- The Insert Hyperlink dialog box opens
From here, the left panel shows four destination types:
| Option | What It Links To |
|---|---|
| Existing File or Web Page | A URL or local/network file |
| Place in This Document | A cell reference or named range in the workbook |
| Create New Document | A new file that Excel will create |
| E-mail Address | Opens the user's default email client |
Fill in the Text to display field at the top — this is what appears in the cell. Then set your destination and click OK.
Keyboard shortcut:Ctrl + K opens the same dialog instantly. 🔗
Method 2: Typing a URL Directly
If you type or paste a full URL (starting with http:// or https://) into a cell and press Enter, Excel usually auto-converts it into a clickable hyperlink. The cell shows the raw URL as both the label and the destination.
This works well for quick, informal use but gives you less control over the display text. To edit the label later, you'll need to use the Insert Hyperlink dialog or right-click → Edit Hyperlink.
Method 3: Using the HYPERLINK Function
For users who build dynamic spreadsheets or want to generate links programmatically, Excel's HYPERLINK function is more powerful than the dialog.
Syntax:
=HYPERLINK(link_location, [friendly_name]) Examples:
=HYPERLINK("https://example.com", "Visit Site") =HYPERLINK("#Sheet2!A1", "Go to Sheet 2") =HYPERLINK("C:ReportsQ1.xlsx", "Open Q1 Report") The friendly_name argument controls what text appears in the cell. You can even reference another cell here — so if B2 contains a product name, =HYPERLINK(A2, B2) creates a clickable link using that name dynamically.
This method is especially useful when building dashboards, tables of contents for large workbooks, or reports where links need to update based on changing data.
Linking to a Specific Cell or Sheet
One of Excel's most practical hyperlink uses is internal navigation — particularly in large workbooks with multiple sheets. ✅
Using the dialog:
- Open Insert Hyperlink (
Ctrl + K) - Select Place in This Document
- Choose the sheet from the list
- Type the cell reference (e.g.,
A1,D15)
Using the HYPERLINK function:
=HYPERLINK("#Sheet3!B10", "Jump to Budget") The # prefix tells Excel the destination is within the current file.
Editing and Removing Hyperlinks
To edit: Right-click the cell → Edit Hyperlink — the same dialog reopens with existing values pre-filled.
To remove: Right-click the cell → Remove Hyperlink. This deletes the link but keeps the cell text.
To remove and clear the text entirely: Select the cell and press Delete after removing the link, or just press Delete directly if you want to clear everything.
Note: If you right-click a hyperlink cell without clicking it first, Excel selects the cell correctly. Clicking directly activates the link — so use right-click to access edit options.
Formatting Hyperlinks
By default, Excel displays hyperlinks in blue underlined text, following the workbook's theme. Once a link has been visited, it typically changes to purple.
You can override this:
- Select the cell, then manually change font color and remove underline through the Home tab
- Modify the Hyperlink and Followed Hyperlink cell styles in the Styles gallery to apply changes workbook-wide
Keep in mind that heavy custom formatting can make links less recognizable to other users who open the file.
Variables That Affect Your Approach
The right method depends on a few factors specific to your situation:
- Excel version and platform — The HYPERLINK function works consistently across versions, but the ribbon layout and dialog labels differ slightly between Excel 2016, 2019, Microsoft 365, and Excel for Mac or web
- Dynamic vs. static data — If your links change based on input, the HYPERLINK function is far more practical than manually editing dialog-based links
- Who uses the file — Shared workbooks or files sent to others may behave differently if they reference local file paths that don't exist on the recipient's machine
- Security settings — Excel's Trust Center can block certain hyperlink types, particularly links pointing to executable files or external network paths
How you apply these methods — and which trade-offs matter — depends entirely on what your spreadsheet is meant to do and who it's built for. 🖥️