We all use hyperlinks every day. That clickable, sometimes underlined, sometimes blue text has come to be as familiar as text itself. There's more to the program than just excel formulas, and while hyperlinks might not be as common in Excel, there are many uses for hyperlinks within a workbook as well. You might link to product documentation in an inventory sheet or include a personal webpage column when gathering information about job applicants.
You can also create links to specific sheets and ranges within a workbook. This can help viewers find important information in very large, or very complicated files. Here are four ways to add them to your sheets and when you might do so.
When text entered into a cell is formatted as a valid website address, Excel should recognize it and automatically apply a hyperlink to that text. Simply type or copy/paste the address into a cell and let Excel apply the hyperlink.
The easiest way to link between cells or ranges within a workbook is to simply drag and drop!
Excel automatically creates a hyperlink to the selected cell. Your cursor will jump to this cell when clicked.

The Insert Hyperlink dialog gives you the most options for formatting and setting up hyperlinks. Use this when you want to customize a link or quickly apply a link to another sheet within your document or another workbook entirely.
Hint! This is a great place to use Named cells and Named ranges to make it easier to link to sections of your workbook more easily.
E-mail Address will help you format the link correctly to open an email pane.
3. Enter the text for your link in the Text to display: field if needed.
4. Complete the information needed in the center pane and click
In our example, we want to link the region information to the web listing of all the agents in that region. So, we will choose the Existing File or Web Page option and copy/paste in the web address in the Address field.
Lastly, you can build hyperlinks using the HYPERLINK function. This is useful when you have links that are based on other fields of data such as an email address that is ALWAYS a person’s first and last name plus “@company.com” for example.
In this example, we want to link to the brochure for the specific policy that was purchased and place that link in the Brochure Link column.
We also know that brochures are named consistently and located in the same folder on the network drive. This means that you can always create a working URL by combining the folder path and the filename which is always the State Code plus “.pdf”.
Here is the Syntax for the HYPERLINK function:
HYPERLINK(link_location, [friendly_name])
The Link_location argument is where you specify the path and file name to the document you are linking. The destination can be a file path or a URL on the internet if using the desktop version of Excel. (Only web URLs will work on the web version of Excel.)
The [friendly_name] argument is optional and lets you customize the text of the link within the cell. If left empty, the URL address in the link_location argument is displayed.
=HYPERLINK(“http://www.pryor.com/blog/category/excel”, “Open Excel Blog”)
Notice that the URL and friendly_name link text is in quotations.
But to create a link that simple, we’d just use the insert dialog from above. Instead, we want to create dynamic links and dynamic link text based on our data. The function allows us to build the link_location based on:
· The folder file path: https://drive.company.com/brochures/2022/ which will be enclosed in “quotes” to indicate static text.
· The file name using Column H indicated by cell name.
· And the file type: .pdf also enclosed in “quotes” to indicate that this exact text is to be appended after the text in the cell name.
Our resulting formula would then be:
=HYPERLINK("https://drive.company.com/brochures/2022/"&H2&".pdf")
The ampersand (&) connects the static and dynamic elements to produce a location result as seen in cell J2:
http://drive.company.com/brochures/2022/AR-Auto.pdf
To make our sheet even more helpful, we can use the friendly_name argument in the same way to produce an informative link. This is shown in cell J3 with the formula:
=HYPERLINK("http://drive.company.com/brochures/2022/"&H3&".pdf",H3&" Brochure")
With the easy-to-read result seen in J3: AR-Auto Brochure
While it might be a trick to set up a link using the HYPERLINK function, when you have a whole sheet of links that are consistent in this way, you can do it once, then simply drag the formula down the column as we’ve done here!
If you need to change or remove a hyperlink from an Excel cell, right-click on the cell and choose an option from the fly-out menu: Edit, Open (which will take you to the link) or Remove.
Hyperlinks can be more than just data you are storing. They can help you navigate complicated workbooks and are key to creating useful dashboards. Practice the techniques shown here and let us know the ways you plan to use them!
For more Excel resources and tips, see our excel content here