Creating Hyperlinks In Excel

Everyone would agree that creating a hyperlink in Excel is pretty straight forward. All you have to do is to copy the url (web address) from your web browser and paste the link into one of the cells in Excel. Using the INSERT method, you can also create a link that allows you to jump to another worksheet, another cell in the same file. But that is not what we are going to share with you here. We would like to share with you the worksheet function version that can do more than just

  1. Creating Hyperlinks In Excel Worksheet
  2. Create Hyperlinks In Excel Macro
  3. Create Hyperlink In Excel Using Formula

jumping to another cell in another worksheet or to link to a website. It can help you search for text located in another worksheet.

Download excel file: you how to create hyperlinks to different worksheets in your excel 2010 spreadsheet. This lets you quic. A: Excel 2010, 2007, and 2003 provide a hyperlink function that converts text to a clickable hyperlink. In the example below, I entered =HYPERLINK(L2) in cell M2, which converts the text-based data in cell L2 into a clickable hyperlink. Excel Tutorials - Creating a Hyperlink in Excel 1. Excel Tutorials CREATING A HYPERLINK IN EXCEL - HYPERLINK FUNCTION, HYPERLINK COMMAND MS EXCEL FOR MAC (VERSION 2016) Merve Nur Tas, Eng. Notes 2 u All examples are created on a Mac computer, however the formulas are the same for the Windows version of Excel.

Creating hyperlinks in excel sheet

Basic use of HYPERLINK formula

Creating hyperlinks in excel

There are many ways to create a hyperlink in Excel. To link to a certain web page, you can simply type its URL in a cell, hit Enter, and Microsoft Excel will automatically convert the entry into a clickable hyperlink. Method 1of 2:Editing Broken Hyperlinks Download Article. Open the workbook with the broken hyperlink (s). You can usually open the file in Excel by double-clicking its filename. Right-click the hyperlink and select Edit Hyperlink. This displays all of the details about the hyperlink in a handy dialog box.

First let us look at the basic setup of the formula:

There are 2 inputs required for this formula to work.

The first input is the link location and the second is the friendly name, i.e. the displayed name. Supposed you would like to link to a cell C5 in the worksheet Sheet2 from Sheet1. You have to enter the full name of the file followed by the worksheet name and then the cell. Assuming that your file is located in D:everydayExcel MktgMsg_1208, the file name is called search.xls, you will have to enter the formula as

=Hyperlink(“[D:everydayExcel MktgMsg_1208search.xls]Sheet2!C5,”Displayed Name”)

Note that the file directory must be enclosed within the square brackets [xx]

Displayed Name is used to disguise or shorten actual link. It is also commonly known as the anchor text.

Between this worksheet formula and INSERT HYPERLINK formula, I would rather choose the latter which is more straightforward. It’s found in the pop-up menu when we right click within a cell.

Creating Hyperlinks In Excel

So what is use of learning this function?

Combined with other formulas such CELL, ADDRESS, MATCH and Ampersand (“&”), you can turn it as a powerful search function.

Let’s say I have 3 worksheets & I want to put a link in C5 (Sheet1) to find whatever’s in B5 in another worksheet named “Sheet2”.

For the first input which requires the filename and its location on the computer, we can use the CELL formula to automatically return where the Excel file is located.

“Cell(“filename”,[reference]).

The “reference” should be a cell in the worksheet you wish to jump to. In our case, we’ll go to Sheet2 & select A1.

Creating

The CELL formula gives the full details for the directory, current Workbook & Worksheet Name as shown.

[D:everydayExcel MktgMsg_1208search.xls]Sheet2

To link it to a cell reference, we need an exclamation mark after the worksheet name & the cell we are looking for. To find the row number “Curtis Lemanski” is at, we can use a MATCH formula:

The “lookup_value” is where “Curtis Lemanski” in Sheet1 is at (i.e. B5). “lookup_array” is a range in Sheet2 where “Curtis Lemanski” is be located. That range is “A1:A15” for our example. And putting “0” in “match type” suggest that we only want to find an exact match.

The ADDRESS formula returns a cell reference when it is given the row number & column number.

Row number has already been obtained by using the MATCH formula while column number is “1”, referring to Column A.

Using the “&”, we combine the filename, worksheet name, “!” and the cell reference to form this:

=HYPERLINK(CELL(“Filename”,Sheet2!$A$1)&”!”&ADDRESS(MATCH(B5,Sheet2!A1:A15,0),1),”Link”)

And we’ll get:”[D:everydayExcel MktgMsg_1208search.xls]Sheet2!$A$6 When we change the name given in B5, the hyperlink will be re-directed to the particular name.

New! Comments

Have your say about what you just read! Leave me a comment in the box below.

Creating

Share this page:

Enjoy this page? Please pay it forward. Here’s how…

Would you prefer to share this page with others by linking to it?

  1. Click on the HTML link code below.
  2. Copy and paste it, adding a note of your own, into your blog, a Web page, forums, a blog comment, your Facebook account, or anywhere that someone would find this page valuable.

<a href=”http://www.advanced-excel.com/”>Advanced Excel – From a Business Perspective</a><a href=”http://www.advanced-excel.com/”>Advanced Excel – From a Business Perspective</a>

Copyright © advanced-excel.com 2007 – 2019. All Rights Reserved. Privacy Policy

Microsoft® and Microsoft Excel® are registered trademarks of Microsoft Corporation.

advanced-excel.com is in no way associated with Microsoft

Comments are closed.