Method 1: Insert Hyperlink dialog
Select the cell
Click the cell you want to turn into a link.
Open Insert > Link (or press Ctrl+K)
Excel opens the Insert Hyperlink dialog.
Choose the destination and confirm
Paste a web address, pick a location in the current workbook, or enter an email address, then select OK. The cell becomes clickable immediately.
This is the fastest option for a single link, and it's what most people reach for first. For links that depend on other data in the sheet — or that you need to repeat down a whole column — the formula below is more reliable.
Method 2: The HYPERLINK() formula
=HYPERLINK(link_location, [friendly_name])
| Argument | Required? | What it does |
|---|---|---|
link_location | Yes | The destination — a URL, a cell reference, a sheet name, or a mailto: address. Limited to 255 characters. |
friendly_name | No | The text the cell displays. If omitted, the cell shows the raw link_location instead. |
Formula examples
=HYPERLINK("https://example.com", "Visit Example")
=HYPERLINK("mailto:hello@example.com", "Email us")
=HYPERLINK("#Sheet2!A1", "Go to Sheet2")
=HYPERLINK(B2, "Open this row's link") Because link_location can reference another cell, HYPERLINK() is the better choice whenever you're generating links from a list of URLs already in the sheet — drag the formula down the column and every row updates automatically.
Fixing & removing hyperlinks
A pasted link isn't clickable
Excel normally auto-converts a plain URL into a link the moment you press Enter or Tab. If that isn't happening, the cell may already be formatted as text — select it, use Insert > Link (Ctrl+K), and confirm the address manually to force it.
Removing a hyperlink
Right-click the cell and choose Remove Hyperlink to drop the link but keep the visible text. Choose Clear Hyperlinks instead if you also want to strip the blue, underlined formatting that comes with it.
Reference: Microsoft Support — HYPERLINK function.
Need a link outside Excel too?
Build the matching HTML or Markdown version with the same URL — free, private, copy and paste ready.