This tutorial explains the basics of the Excel HYPERLINK function and provides a few tips and formula examples to use it most efficiently.
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. To link to another worksheet or a specific location in another Excel file, you can use the Hyperlink context menu or Ctrl + K shortcut. If you plan to insert many identical or similar links, the fastest way is to use a Hyperlink formula, which makes it easier to create, copy and edit hyperlinks in Excel.
The HYPERLINK function in Excel is used to create a reference (shortcut) that directs the user to the specified location in the same document or opens another document or web-page. By using a Hyperlink formula, you can link to the following items:
The function is available in all versions of Excel for Office 365, Excel 2019, Excel 2016, Excel 2013, Excel 2010, Excel 2007, Excel 2003, Excel XP, and Excel 2000. In Excel Online, the HYPERLINK function can only be used for web addresses (URLs).
The syntax of the HYPERLINK function is as follows:
Where:
Link_location can be supplied as a reference to a cell containing the link or a text string enclosed in quotation marks that contains a path to a file stored on a local drive, UNC path on a server, or URL on the Internet or intranet.
If the specified link path does not exist or is broken, a Hyperlink formula will throw an error when you click the cell.
Friendly_name can be supplied as a numeric value, text string enclosed in quotation marks, name, or reference to a cell that contains the link text.
Clicking a cell with a Hyperlink formula opens the file or web-page specified in the link_location argument.
Below, you can see the simplest example of an Excel Hyperlink formula, where A2 contains friendly_name and B2 contains link_location:
=HYPERLINK(B2, A2)
The result may look something similar to this:
More formula examples demonstrating other uses of the Excel HYPERLINK function follow below.
Moving from theory to practice, let's see how you can use the HYPERLINK function to open various documents directly from your worksheets. We will also discuss a more complex formula where Excel HYPERLINK is used in a combination with a few other functions to accomplish a non-trivial challenging task.
The Excel HYPERLINK function enables you to insert clickable hyperlinks of a few different types depending on what value you supply to the link_location argument.
To insert a hyperlink to a different sheet in the same workbook, supply the target sheet name preceded by a pound sign (#), and followed by the exclamation point and target cell reference, like this:
=HYPERLINK("#Sheet2!A1", "Sheet2")
The above formula creates a hyperlink with the jump text "Sheet2" that opens Sheet2 in the current workbook.
If the worksheet name includes spaces or non-alphabetical characters, it must be enclosed in single quotation marks, like this:
=HYPERLINK("#'Price list'!A1", "Price list")
In the same way, you can make a hyperlink to another cell in the same sheet. For example, to insert a hyperlink that will take you to cell A1 in the same worksheet, use a formula similar to this:
=HYPERLINK("#A1", "Go to cell A1")
To create a hyperlink to another workbook, you need to specify the full path to the target workbook in the following format:
"Drive:\Folder\Workbook.xlsx"
For example:
=HYPERLINK("D:\Source data\Book3.xlsx", "Book3")
To land on a specific sheet and even in a specific cell, use this format:
"[Drive:\Folder\Workbook.xlsx]Sheet!Cell"
For example, to add a hyperlink titled "Book3" that opens Sheet2 in Book3 stored in the Source data folder on drive D, use this formula:
=HYPERLINK("[D:\Source data\Book3.xlsx]Sheet2!A1", "Book3")
If you plan to move your workbooks to another location soon, you can create a relative link like this:
=HYPERLINK("Source data\Book3.xlsx", "Book3")
When you move the files, the relative hyperlink will continue working as long as the relative path to the target workbook remains unchanged. For more information, please see Absolute and relative hyperlinks in Excel.
If you are making a hyperlink to a worksheet-level name, include the full path to the target name:
"[Drive:\Folder\Workbook.xlsx]Sheet!Name"
For instance, to insert a link to a range named "Source_data" stored on Sheet1 in Book1, use this formula:
=HYPERLINK("[D:\Excel files\Book1.xlsx]Sheet1!Source_data","Source data")
If you are referencing a workbook-level name, the sheet name does not need to be included, for example:
=HYPERLINK("[D:\Excel files\Book1.xlsx]Source_data","Source data")
To create a link that will open another document, specify the full path to that document in this format:
"Drive:\Folder\File_name.extension"
For example, to open the Word document named Price list that is stored in the Word files folder on drive D, you use the following formula:
=HYPERLINK("D:\Word files\Price list.docx","Price list")
To make a hyperlink to a specific location in a Word document, enclose the document path in [square brackets] and use a bookmark to define the location you want to navigate to.
For example, the following formula adds a hyperlink to the bookmark named Subscription_prices in Price list.docx:
=HYPERLINK("[D:\Word files\Price list.docx]Subscription_prices","Price list")
To open a file stored in your local network, supply the path to that file in the Universal Naming Convention format (UNC) that uses double backslashes to precede the name of the server, like this:
"\\Server_name\Folder\File_name.extension"
The below formula creates a hyperlink titled "Price list" that will open the Price list.xlsx workbook stored on SERVER1 in Svetlana folder:
=HYPERLINK("\\SERVER1\Svetlana\Price list.xlsx", "Price list")
To open an Excel file at a specific worksheet, enclose the path to the file in [square brackets] and include the sheet name followed by the exclamation point (!) and the referenced cell:
=HYPERLINK("[\\SERVER1\Svetlana\Price list.xlsx]Sheet4!A1", "Price list")
To create a hyperlink to a web-page on the Internet or intranet, supply its URL enclosed in quotation marks, like this:
=HYPERLINK("https://www.ablebits.com","Go to Ablebits.com")
The above formula inserts a hyperlink, titled "Go to Ablebits.com", that opens the home page of our web-site.
To create a new message to a specific recipient, provide an email address in this format:
"mailto:email_address"
For instance:
=HYPERLINK("mailto:support@ablebits.com","Drop us an email")
The above formula adds a hyperlink titled "Drop us an email", and clicking the link creates a new message to our support team.
When working with large datasets, you may often find yourself in a situation when you need to look up a specific value and return the corresponding data from another column. For this, you use either the VLOOKUP function or a more powerful INDEX MATCH combination.
But what if you not only want to pull a matching value but also jump to the position of that value in the source dataset to have a look at other details in the same row? This can be done by using the Excel HYPERLINK function with some help from CELL, INDEX and MATCH.
The generic formula to make a hyperlink to the first match is as follows:
To see the above formula in action, consider the following example. Supposing, you have a list of vendors in column A, and the sold products in column C. You aim to pull the first product sold by a given vendor and make a hyperlink to some cell in that row so you can review all other details associated with that particular order.
With the lookup value in cell E2, vendor list (lookup range) in A2:A10, and product list (return range) in C2:C10, the formula takes the following shape:
=HYPERLINK("#"&CELL("address", INDEX($C$2:$C$10, MATCH($E2,$A$2:$A$10,0))), INDEX($C$2:$C$10, MATCH($E2,$A$2:$A$10,0)))
As shown in the screenshot below, the formula pulls the matching value and converts it into a clickable hyperlink that directs the user to the position of the first match in the original dataset.
If you are working with long rows of data, it might be more convenient to have the hyperlink point to the first cell in the row where the match is found. For this, you simply set the return range in the first INDEX MATCH combination to column A ($A$2:$A$10 in this example):
=HYPERLINK("#"&CELL("address", INDEX($A$2:$A$10, MATCH($E2,$A$2:$A$10,0))), INDEX($C$2:$C$10, MATCH($E2,$A$2:$A$10,0)))
This formula will take you to the first occurrence of the lookup value ("Adam") in the dataset:
Those of you who are familiar with the INDEX MATCH formula as a more versatile alternative to Excel VLOOKUP, have probably already figured out the overall logic.
At the core, you use the classic INDEX MATCH combination to locate the first occurrence of the lookup value in the lookup range:
You can find full details on how this formula works by following the above link. Below, we will outline the key points:
This way, you get the friendly_name argument of your Hyperlink formula.
Now, let's work out link_location, i.e. the cell the hyperlink should point to. To get the cell address, you use the CELL("address", [reference]) function with INDEX MATCH as reference. For the HYPERLINK function to know that the target cell resides in the current sheet, concatenate the cell address with the pound character ("#").
Download this Excel Hyperlink formula
As mentioned in the beginning of this tutorial, one of the most useful benefits of formula-driven hyperlinks is the ability to edit multiple Hyperlink formulas in one go by using Excel's Replace All feature.
Let's say you want to replace the old URL of your company (old-website.com) with the new one (new-website.com) in all hyperlinks on the current sheet or in the entire workbook. To have it done, please follow the steps outlined below:
In a similar fashion, you can edit the link text (friendly_name) in all Hyperlink formulas at the same time. When doing so, be sure to check that the text to be replaced in friendly_name does not appear anywhere in link_location so that you won't break the formulas.
The most common reason for a Hyperlink formula not working (and the first thing for you to check!) is a non-existent or broken path in the link_location argument. If it's not the case, check out the following two things:
Typically, such errors occur when friendly_name is returned by some other function(s), like in our Vlookup and hyperlink to the first match example. In this case, the #N/A error will show up in the formula cell if the lookup value is not found within the lookup table. To prevent such errors, you may consider using the IFERROR function to display an empty string or some user-friendly text instead of the error value.
This is how you create hyperlinks using the Excel HYPERLINK function. I thank you for reading and hope to see you on our blog next week!
43 responses to "How to use Excel HYPERLINK function to create different link types"
Is there a way to create a basic hyperlink formula using an absolute cell reference within the same or a different workbook? I have tried adding the $ to cell reference in link location but it does not appear to work. Thanks!
Never mind...I was able to get an absolute reference to work only when a defined/named range is used instead of direct cell reference. For anyone who cares :)!
Very nice Article! Thanks
I have a formula which relates to a separate sheet in the workbook. I would like it to be hyperlinked to the other sheet. The problem is that the list is too long to do this individually. Is there a way I can add the hyperlink into the existing formula.
=OFFSET('1st Quarter'!A$33,ROWS(A$33:A33)*31-31,0)
Thanks is inticipation
i have a column about mail address exp:m1@yahoo.com, 'd2@yahoo.com,....
and want to replace column to "!m1", "@m1" how to set it?
as tag a href
I have a hyperlink to a cell in the same worksheet, however, when a row is added or deleted, the hyperlink then points to the wrong cell. How can I make the hyperlink relative so it always points to the correct cell, regardless of how many rows are added or deleted? Thank you so much!!
Hi Lisa,
Were you able to get this to work?
Thanks!
Hi Svetlana ,
How can I attach an Excel wk sheet rather than a lenthy writing
Wk-sht has only 6-7 lines and the problem will be obvious at the first glance
It is on HYPERLINK with Dymanic wk-sheet name
It shows what works correctly - Non Dynamic
But when made to be a Dynamic wk-sht name via INDIRCET() it failed miserably
cheers
kanil
I have cells with a link and text copied from a web page. The short cut shows in the cell and a mouseover the cell shows the link. Is there a way to separate these and put them in different cells for example:
A1: Church Record Mouseover says: http:www.familysearch.org in popup
A2: Church Record
A3: http:www.familysearch.org
Thanks,
Gene
=IF(G23=0,"",HYPERLINK("mailto:"&R23&"?body="&$M$22&"%0A"&M23&"%0A"&$L$22&"%0A"&L23&"%0A"&$O$22&"%0A"&O23&"%0A"&$G$22&"%0A"&G23&"%0A"&$I$22&"%0A"&I23&"%0A"&$K$22&"%0A"&K23,"send"))
HOW I AM ADD O23 CELL IN DATE FORMET IN MAIL
I am using hyperlink formula "HYPERLINK("#Bhoo!c6","")" When i am using this i am getting the result but i want this formula in the same cell and i tried this. ="270000"&HYPERLINK("#Bhoo!c6","")- not getting the result
Hi,
I have an Excel file with different reference numbers in each cell (row) Hyperlinked as shown below. when I add new rows and drag the last reference number down I get reference numbers in serial but the hyperlink doesn't change. Every time I have to spend lot of time to change manually. IS THERE ANY WAY TO CHANGE THE HYPERLINKS AT A TIME??
AL-TS-L-3580
AL-TS-L-3581
AL-TS-L-3582
AL-TS-L-3583
Please help.
Thanks
Johnson
Hello! Can you provide a few examples for why someone would use the create a hyperlink that creates a pre-addressed email message feature in Excel. I'm going through the Excel 2016 exam 77/727 guide, and I'm having a little difficulty determining under what circumstances a user would use this feature.
Any guidance would be appreciated. Thanks!
=HYPERLINK("[D:\Word files\Price list.docx]Subscription_prices","Price list")
I want to inset cell reference i.e C3 at (subscription_prices) i.e bookmark place..
Pls kindly help with respect to above..
I have tried every variant from simple to complex and I don't even get an error message (#VALUE or N/A) returned, just the text of the formula as I typed it as if Excel 2007 doesn't even recognize it as a formula. Is the formula part of a toolpak or add-in I need to install?
Hi Clayton,
There may be several reasons for formulas being displayed as text. Hopefully one of the following tips will fix the issue: Excel formulas not calculating
All hyperlinks in my Excel file have Changed to the following path
C:\Users\hamidreza\AppData\Roaming\Microsoft\Excel
The main path is on the network drive map \\filesrv\...
This change of course has happened suddenly.
1-Why is this happening?
2-How to correct the paths to the main path in the network drive?
The number of Hyperlinks is high
Please help.
Thanks
This post was exactly what I was looking for--thanks! I had thousands of URLs in a spreadsheet and I needed each one to display "Read More" instead of the displaying the whole URL.
I'm having the same problem as Lisa (post 7. When I use the hyperlink function to point to a cell on another sheet in the same workbook, the hyperlink doesn't adjust dynamically with the cell when it is moved. I.E. I use the formula =HYPERLINK("#'Calcs. Form'!D12","1-100"), but if I delete cell D11 on the 'calcs. form' and my 'D12' cell moves up, my hyperlink still points to D12 instead of moving up to D11. The only solution I have found is to actually give the cell a unique name, via define name, and point a hyperlink at the name. Suggestions? I'm I just missing something in my formula? I don't have the D12 set as absolute. ($D$12)
hi good evening,
please advice hyperlink create folder & excel file.
Nice article, thanks for that.
Do you know if it's possible to edit screen tip for hyperlink() function? It's an option when hyperlink is added via Insert in ribbon but not sure if it's doable when a function is used.
I use Excel based work instructions. I have a hyperlink built in which imports a "User list" of names of active people who use the work instructions. The list gets imported automatically so if the given employee is done with a given operation, they can click a drop down box and select their name to sign off an operation.
The problem I have alot, is that if I save the network location into the link path (Even though I set it as UNC!!!) to the "User list" and my network path is on "X" letter drive, Excel updates the link as letter drive, even when I have it set to UNC. Now when the operator opens it on their PC and the letter drive is different, the hyperlink is automatically now broken.
How can I set the link not to be clicked on to open, I just want the name list automatically imported to the hidden list that populates the drop down menu. but I need Excel to update the link as UNC not letter drive. I fix this dozens of times a day.
I'm using Office 365 and trying to insert a conditional hyperlink using the if statement but it doesn't work. Because I have many columns in my data sheet, I want to use the if statement to quickly look at a particular cell, if it meets the condition insert a hyperlink to another cell in the same sheet. The formula I am using is: =if(CF1="Blocked",hyperlink(CG1,"Blocked"),"")
Not sure why it doesn't work - seems pretty straight forward
Brilliant. That saved me a HUGE amount of time.
Thank you so much!
I have around 800 PDF files that I need to attach to the excel sheet as hyperlinks. Is there a way that I can batch insert these files to the sheet and not have to go through manually inserting these items to the cells?
Hi,
Please, could anyone help me out with the hyperlink? Is there any way to add hyperlinks for 50 excel files in one go.
Example
In the Excel sheet.
1)Invoice A Link (A Excel file.xlsx
2)Invoice B Link (B Excel file.xlsx
3)Invoice C Link (C Excel file.xlsx
Continue till 50)
how to change bulk txt into hyperlink at one click
Sir,
I have a file containing Invoice No. ( Manually enter in Sheets ) with different file ( Excel file ) name in different directory .
I want to assign a hyperlink to respective Invoice no , what is the short cut for the same.
For Example
Excel file contains Column A - 1 to 10 numbers
and in one of directory contain 1 to 10 excel file ( Invoice format ) how to hyperlink at a time when i click 1 in column A it should show me INVOICE NO. 1 Excel file
Hi, i have dought on hyperlink, i will use concetate fonction using in herperlink, colums have same file name, i will use above function to view the listing link in another colums , it's working, but i cat link sub folders, give any idea,
=Hyperlink(contecate("//file path/",file name or cell value,"file type"),"friendly name"))this formula i have using, pls give any suggestions for sub folders
Hi,
This should work fine to link to sub-folders, as long as you are specifying the correct full file-path and ending it with "\" in place of the filetype. e.g. if cell A1 contained the name of the subfolder that I wanted to open instead of a file, then I would use =hyperlink(concatenate("\\filepath\",A1,"\"),"Friendly name")
I have many sub folder, i want link exact match in colum A:A find, pls give sub folder view folmula
Hi, i prepare one excel sheet hyperlink for my projects its more than 300 projects now my hyperlink is not working when i clink any project name in excel sheet its showing "can't open specified file" like that can you help me? to solve this issue.
I'm having the same problem as Lisa (post 7. When I use the hyperlink function to point to a cell on another sheet in the same workbook, the hyperlink doesn't adjust dynamically with the cell when it is moved. I.E. I use the formula =HYPERLINK("#'Calcs. Form'!D12","1-100"), but if I delete cell D11 on the 'calcs. form' and my 'D12' cell moves up, my hyperlink still points to D12 instead of moving up to D11. The only solution I have found is to actually give the cell a unique name, via define name, and point a hyperlink at the name. Suggestions? I'm I just missing something in my formula? I don't have the D12 set as absolute. ($D$12)
Hello!
I think the best way is to give your cell a unique name. Then use this name in the formula
=HYPERLINK("#Calcs.Form!Cell_D12")
Hi,
I created hyperlinks in my excel workbook to link to a specific place in the same workbook, i.e. the note numbers in the balance sheet of the financial statements are hyperlinked to the actual note disclosure. However, every time I insert some new lines into the workbook, the hyperlink does not automatically update it's reference to the new cell. How can I fix this? It is very time-consuming to update each hyperlink again after new rows inserted.
Please advise
How to operate using hyperlink?
HI
I have an excel worksheet and I need to hyperlink to documents that are labelled the same name but to the latest revision in bulk.
example.
1010-10-001r0
1010-10-001r1
1010-10-001r2
1544-10-001r1
1544-10-001r2
I have a folder of hundreds of pdfs labelled like this example and I want to run some code to hyperlink to my spreadsheet from the folder of pdfs.
thanks
Hello!
If I understand you correctly, you need to create a shortcut to the file in Windows.
Just curious, is there a way to assign the hyperlink to an Icon or shape?
Hello!
Please check out this article to learn how to Convert a worksheet object into a clickable hyperlink
Hope you’ll find this information helpful.
How can I combine 3 different cells in one which contains texts with a hyperlink? when I do this hyperlinks disappeared
Hello!
When cells are merged, only one content remains - the upper left.
Here is the article that may be helpful to you: Merge and combine cells in Excel without losing data.
I hope I answered your question. If something is still unclear, please feel free to ask.