For links in excel

For quick access to related information in another file or on a web page, you can insert a hyperlink in a worksheet cell. You can also insert links in specific chart elements.

Note: Most of the screen shots in this article were taken in Excel 2016. If you have a different version your view might be slightly different, but unless otherwise noted, the functionality is the same.

  1. On a worksheet, click the cell where you want to create a link.

    You can also select an object, such as a picture or an element in a chart, that you want to use to represent the link.

    • On the Insert tab, in the Links group, click Link Hyperlink button.

    You can also right-click the cell or graphic and then click Link on the shortcut menu, or you can press Ctrl+K.

  2. Under Link to, click Create New Document.

  3. In the Name of new document box, type a name for the new file.

    Tip: To specify a location other than the one shown under Full path, you can type the new location preceding the name in the Name of new document box, or you can click Change to select the location that you want and then click OK.

  4. Under When to edit, click Edit the new document later or Edit the new document now to specify when you want to open the new file for editing.

  5. In the Text to display box, type the text that you want to use to represent the link.

  6. To display helpful information when you rest the pointer on the link, click ScreenTip, type the text that you want in the ScreenTip text box, and then click OK.

  1. On a worksheet, click the cell where you want to create a link.

    You can also select an object, such as a picture or an element in a chart, that you want to use to represent the link.

    • On the Insert tab, in the Links group, click Link Hyperlink button.

    You can also right-click the cell or object and then click Link on the shortcut menu, or you can press Ctrl+K.

  2. Under Link to, click Existing File or Web Page.

  3. Do one of the following:

    • To select a file, click Current Folder, and then click the file that you want to link to.

      You can change the current folder by selecting a different folder in the Look in list.

    • To select a web page, click Browsed Pages and then click the web page that you want to link to.

    • To select a file that you recently used, click Recent Files, and then click the file that you want to link to.

    • To enter the name and location of a known file or web page that you want to link to, type that information in the Address box.

    • To locate a web page, click Browse the Web Browse the Web button, open the web page that you want to link to, and then switch back to Excel without closing your browser.

  4. If you want to create a link to a specific location in the file or on the web page, click Bookmark, and then double-click the bookmark that you want.

    Note: The file or web page that you are linking to must have a bookmark.

  5. In the Text to display box, type the text that you want to use to represent the link.

  6. To display helpful information when you rest the pointer on the link, click ScreenTip, type the text that you want in the ScreenTip text box, and then click OK.

To link to a location in the current workbook or another workbook, you can either define a name for the destination cells or use a cell reference.

  1. To use a name, you must name the destination cells in the destination workbook.

    How to name a cell or a range of cells

    1. Select the cell, range of cells, or nonadjacent selections that you want to name.

    2. Click the Name box at the left end of the formula bar Button image.

      Example of Name box

      Button image Name box

    3. In the Name box, type the name for the cells, and then press Enter.

      Note: Names can’t contain spaces and must begin with a letter.

  2. On a worksheet of the source workbook, click the cell where you want to create a link.

    You can also select an object, such as a picture or an element in a chart, that you want to use to represent the link.

    • On the Insert tab, in the Links group, click Link Hyperlink button.

    You can also right-click the cell or object and then click Link on the shortcut menu, or you can press Ctrl+K.

  3. Under Link to, do one of the following:

    • To link to a location in your current workbook, click Place in This Document.

    • To link to a location in another workbook, click Existing File or Web Page, locate and select the workbook that you want to link to, and then click Bookmark.

  4. Do one of the following:

    • In the Or select a place in this document box, under Cell Reference, click the worksheet that you want to link to, type the cell reference in the Type in the cell reference box, and then click OK.

    • In the list under Defined Names, click the name that represents the cells that you want to link to, and then click OK.

  5. In the Text to display box, type the text that you want to use to represent the link.

  6. To display helpful information when you rest the pointer on the link, click ScreenTip, type the text that you want in the ScreenTip text box, and then click OK.

You can use the HYPERLINK function to create a link that opens a document that is stored on a network server, an intranet, or the Internet. When you click the cell that contains the HYPERLINK function, Excel opens the file that is stored at the location of the link.

Syntax

HYPERLINK(link_location,friendly_name)

Link_location     is the path and file name to the document to be opened as text. Link_location can refer to a place in a document — such as a specific cell or named range in an Excel worksheet or workbook, or to a bookmark in a Microsoft Word document. The path can be to a file stored on a hard disk drive, or the path can be a universal naming convention (UNC) path on a server (in Microsoft Excel for Windows) or a Uniform Resource Locator (URL) path on the Internet or an intranet.

  • Link_location can be a text string enclosed in quotation marks or a cell that contains the link as a text string.

  • If the jump specified in link_location does not exist or can’t be navigated, an error appears when you click the cell.

Friendly_name     is the jump text or numeric value that is displayed in the cell. Friendly_name is displayed in blue and is underlined. If friendly_name is omitted, the cell displays the link_location as the jump text.

  • Friendly_name can be a value, a text string, a name, or a cell that contains the jump text or value.

  • If friendly_name returns an error value (for example, #VALUE!), the cell displays the error instead of the jump text.

Examples

The following example opens a worksheet named Budget Report.xls that is stored on the Internet at the location named example.microsoft.com/report and displays the text «Click for report»:

=HYPERLINK(«http://example.microsoft.com/report/budget report.xls», «Click for report»)

The following example creates a link to cell F10 on the worksheet named Annual in the workbook Budget Report.xls, which is stored on the Internet at the location named example.microsoft.com/report. The cell on the worksheet that contains the link displays the contents of cell D1 as the jump text:

=HYPERLINK(«[http://example.microsoft.com/report/budget report.xls]Annual!F10», D1)

The following example creates a link to the range named DeptTotal on the worksheet named First Quarter in the workbook Budget Report.xls, which is stored on the Internet at the location named example.microsoft.com/report. The cell on the worksheet that contains the link displays the text «Click to see First Quarter Department Total»:

=HYPERLINK(«[http://example.microsoft.com/report/budget report.xls]First Quarter!DeptTotal», «Click to see First Quarter Department Total»)

To create a link to a specific location in a Microsoft Word document, you must use a bookmark to define the location you want to jump to in the document. The following example creates a link to the bookmark named QrtlyProfits in the document named Annual Report.doc located at example.microsoft.com:

=HYPERLINK(«[http://example.microsoft.com/Annual Report.doc]QrtlyProfits», «Quarterly Profit Report»)

In Excel for Windows, the following example displays the contents of cell D5 as the jump text in the cell and opens the file named 1stqtr.xls, which is stored on the server named FINANCE in the Statements share. This example uses a UNC path:

=HYPERLINK(«\FINANCEStatements1stqtr.xls», D5)

The following example opens the file 1stqtr.xls in Excel for Windows that is stored in a directory named Finance on drive D, and displays the numeric value stored in cell H10:

=HYPERLINK(«D:FINANCE1stqtr.xls», H10)

In Excel for Windows, the following example creates a link to the area named Totals in another (external) workbook, Mybook.xls:

=HYPERLINK(«[C:My DocumentsMybook.xls]Totals»)

In Microsoft Excel for the Macintosh, the following example displays «Click here» in the cell and opens the file named First Quarter that is stored in a folder named Budget Reports on the hard drive named Macintosh HD:

=HYPERLINK(«Macintosh HD:Budget Reports:First Quarter», «Click here»)

You can create links within a worksheet to jump from one cell to another cell. For example, if the active worksheet is the sheet named June in the workbook named Budget, the following formula creates a link to cell E56. The link text itself is the value in cell E56.

=HYPERLINK(«[Budget]June!E56», E56)

To jump to a different sheet in the same workbook, change the name of the sheet in the link. In the previous example, to create a link to cell E56 on the September sheet, change the word «June» to «September.»

When you click a link to an email address, your email program automatically starts and creates an email message with the correct address in the To box, provided that you have an email program installed.

  1. On a worksheet, click the cell where you want to create a link.

    You can also select an object, such as a picture or an element in a chart, that you want to use to represent the link.

    • On the Insert tab, in the Links group, click Link Hyperlink button.

    You can also right-click the cell or object and then click Link on the shortcut menu, or you can press Ctrl+K.

  2. Under Link to, click E-mail Address.

  3. In the E-mail address box, type the email address that you want.

  4. In the Subject box, type the subject of the email message.

    Note: Some web browsers and email programs may not recognize the subject line.

  5. In the Text to display box, type the text that you want to use to represent the link.

  6. To display helpful information when you rest the pointer on the link, click ScreenTip, type the text that you want in the ScreenTip text box, and then click OK.

    You can also create a link to an email address in a cell by typing the address directly in the cell. For example, a link is created automatically when you type an email address, such as someone@example.com.

You can insert one or more external reference (also called links) from a workbook to another workbook that is located on your intranet or on the Internet. The workbook must not be saved as an HTML file.

  1. Open the source workbook and select the cell or cell range that you want to copy.

  2. On the Home tab, in the Clipboard group, click Copy.

    Copy and Paste buttons on the Home tab

  3. Switch to the worksheet that you want to place the information in, and then click the cell where you want the information to appear.

  4. On the Home tab, in the Clipboard group, click Paste Special.

  5. Click Paste Link.

    Excel creates an external reference link for the cell or each cell in the cell range.

Note: You may find it more convenient to create an external reference link without opening the workbook on the web. For each cell in the destination workbook where you want the external reference link, click the cell, and then type an equal sign (=), the URL address, and the location in the workbook. For example:

=’http://www.someones.homepage/[file.xls]Sheet1′!A1

=’ftp.server.somewhere/file.xls’!MyNamedCell

To select a hyperlink without activating the link to its destination, do one of the following:

  • Click the cell that contains the link, hold the mouse button until the pointer becomes a cross Excel selection cursor, and then release the mouse button.

  • Use the arrow keys to select the cell that contains the link.

  • If the link is represented by a graphic, hold down Ctrl, and then click the graphic.

You can change an existing link in your workbook by changing its destination, its appearance, or the text or graphic that is used to represent it.

Change the destination of a link

  1. Select the cell or graphic that contains the link that you want to change.

    Tip: To select a cell that contains a link without going to the link destination, click the cell and hold the mouse button until the pointer becomes a cross Excel selection cursor, and then release the mouse button. You can also use the arrow keys to select the cell. To select a graphic, hold down Ctrl and click the graphic.

    • On the Insert tab, in the Links group, click Link. Hyperlink button

    You can also right-click the cell or graphic and then click Edit Link on the shortcut menu, or you can press Ctrl+K.

  2. In the Edit Hyperlink dialog box, make the changes that you want.

    Note: If the link was created by using the HYPERLINK worksheet function, you must edit the formula to change the destination. Select the cell that contains the link, and then click the formula bar to edit the formula.

You can change the appearance of all link text in the current workbook by changing the cell style for links.

  1. On the Home tab, in the Styles group, click Cell Styles.

  2. Under Data and Model, do the following:

    • To change the appearance of links that have not been clicked to go to their destinations, right-click Link, and then click Modify.

    • To change the appearance of links that have been clicked to go to their destinations, right-click Followed Link, and then click Modify.

      Note: The Link cell style is available only when the workbook contains a link. The Followed Link cell style is available only when the workbook contains a link that has been clicked.

  3. In the Style dialog box, click Format.

  4. On the Font tab and Fill tab, select the formatting options that you want, and then click OK.

    Notes: 

    • The options that you select in the Format Cells dialog box appear as selected under Style includes in the Style dialog box. You can clear the check boxes for any options that you don’t want to apply.

    • Changes that you make to the Link and Followed Link cell styles apply to all links in the current workbook. You can’t change the appearance of individual links.

  1. Select the cell or graphic that contains the link that you want to change.

    Tip: To select a cell that contains a link without going to the link destination, click the cell and hold the mouse button until the pointer becomes a cross Excel selection cursor, and then release the mouse button. You can also use the arrow keys to select the cell. To select a graphic, hold down Ctrl and click the graphic.

  2. Do one or more of the following:

    • To change the link text, click in the formula bar, and then edit the text.

    • To change the format of a graphic, right-click it, and then click the option that you need to change its format.

    • To change text in a graphic, double-click the selected graphic, and then make the changes that you want.

    • To change the graphic that represents the link, insert a new graphic, make it a link with the same destination, and then delete the old graphic and link.

  1. Right-click the hyperlink that you want to copy or move, and then click Copy or Cut on the shortcut menu.

  2. Right-click the cell that you want to copy or move the link to, and then click Paste on the shortcut menu.

By default, unspecified paths to hyperlink destination files are relative to the location of the active workbook. Use this procedure when you want to set a different default path. Each time that you create a link to a file in that location, you only have to specify the file name, not the path, in the Insert Hyperlink dialog box.

Follow one of the steps depending on the Excel version you are using:

  • In Excel 2016, Excel 2013, and Excel 2010:

    1. Click the File tab.

    2. Click Info.

    3. Click Properties, and then select Advanced Properties.

      Advanced Properties

    4. In the Summary tab, in the Hyperlink base text box, type the path that you want to use.

      Note: You can override the link base address by using the full, or absolute, address for the link in the Insert Hyperlink dialog box.

  • In Excel 2007:

    1. Click the Microsoft Office Button Office button image, click Prepare, and then click Properties.

    2. In the Document Information Panel, click Properties, and then click Advanced Properties.

      Advanced Properties

    3. Click the Summary tab.

    4. In the Hyperlink base box, type the path that you want to use.

    Note: You can override the link base address by using the full, or absolute, address for the link in the Insert Hyperlink dialog box.

To delete a link, do one of the following:

  • To delete a link and the text that represents it, right-click the cell that contains the link, and then click Clear Contents on the shortcut menu.

  • To delete a link and the graphic that represents it, hold down Ctrl and click the graphic, and then press Delete.

  • To turn off a single link, right-click the link, and then click Remove Link on the shortcut menu.

  • To turn off several links at once, do the following:

    1. In a blank cell, type the number 1.

    2. Right-click the cell, and then click Copy on the shortcut menu.

    3. Hold down Ctrl and select each link that you want to turn off.

      Tip: To select a cell that has a link in it without going to the link destination, click the cell and hold the mouse button until the pointer becomes a cross Excel selection cursor, and then release the mouse button.

    4. On the Home tab, in the Clipboard group, click the arrow below Paste, and then click Paste Special.

      Copy and Paste buttons on the Home tab

    5. Under Operation, click Multiply, and then click OK.

    6. On the Home tab, in the Styles group, click Cell Styles.

    7. Under Good, Bad, and Neutral, select Normal.

A link opens another page or file when you click it. The destination is frequently another web page, but it can also be a picture, or an email address, or a program. The link itself can be text or a picture.

When a site user clicks the link, the destination is shown in a Web browser, opened, or run, depending on the type of destination. For example, a link to a page shows the page in the web browser, and a link to an AVI file opens the file in a media player.

How links are used

You can use links to do the following:

  • Navigate to a file or web page on a network, intranet, or Internet

  • Navigate to a file or web page that you plan to create in the future

  • Send an email message

  • Start a file transfer, such as downloading or an FTP process

When you point to text or a picture that contains a link, the pointer becomes a hand Pointer in the shape of a hand, indicating that the text or picture is something that you can click.

What a URL is and how it works

When you create a link, its destination is encoded as a Uniform Resource Locator (URL), such as:

http://example.microsoft.com/news.htm

file://ComputerName/SharedFolder/FileName.htm

A URL contains a protocol, such as HTTP, FTP, or FILE, a Web server or network location, and a path and file name. The following illustration defines the parts of the URL:

The four components of a URL

1. Protocol used (http, ftp, file)

2. Web server or network location

3. Path

4. File name

Absolute and relative links

An absolute URL contains a full address, including the protocol, the Web server, and the path and file name.

A relative URL has one or more missing parts. The missing information is taken from the page that contains the URL. For example, if the protocol and web server are missing, the web browser uses the protocol and domain, such as .com, .org, or .edu, of the current page.

It is common for pages on the web to use relative URLs that contain only a partial path and file name. If the files are moved to another server, any links will continue to work as long as the relative positions of the pages remain unchanged. For example, a link on Products.htm points to a page named apple.htm in a folder named Food; if both pages are moved to a folder named Food on a different server, the URL in the link will still be correct.

In an Excel workbook, unspecified paths to link destination files are by default relative to the location of the active workbook. You can set a different base address to use by default so that each time that you create a link to a file in that location, you only have to specify the file name, not the path, in the Insert Hyperlink dialog box.

  1. On a worksheet, select the cell where you want to create a link.

  2. On the Insert tab, select Hyperlink.

    You can also right-click the cell and then select Hyperlink… on the shortcut menu, or you can press Ctrl+K.

  3. Under Display Text:, type the text that you want to use to represent the link.

  4. Under URL:, type the complete Uniform Resource Locator (URL) of the webpage you want to link to.

  5. Select OK.

To link to a location in the current workbook, you can either define a name for the destination cells or use a cell reference.

  1. To use a name, you must name the destination cells in the workbook.

    How to define a name for a cell or a range of cells

     

    Note: In Excel for the Web, you can’t create named ranges. You can only select an existing named range from the Named Ranges control. Alternately, you can open the file in the Excel desktop app, create a named range there, and then access this option from Excel for the web.

    1. Select the cell or range of cells that you want to name.

    2. On the Name Box box at the left end of the formula bar Button image, type the name for the cells, and then press Enter.

      Note: Names can’t contain spaces and must begin with a letter.

  2. On the worksheet, select the cell where you want to create a link.

  3. On the Insert tab, select Hyperlink.

    You can also right-click the cell and then select Hyperlink… on the shortcut menu, or you can press Ctrl+K.

  4. Under Display Text:, type the text that you want to use to represent the link.

  5. Under Place in this document:, enter the defined name or cell reference.

  6. Select OK.

When you click a link to an email address, your email program automatically starts and creates an email message with the correct address in the To box, provided that you have an email program installed.

  1. On a worksheet, select the cell where you want to create a link.

  2. On the Insert tab, select Hyperlink.

    You can also right-click the cell and then select Hyperlink… on the shortcut menu, or you can press Ctrl+K.

  3. Under Display Text:, type the text that you want to use to represent the link.

  4. Under E-mail address:, type the email address that you want.

  5. Select OK.

You can also create a link to an email address in a cell by typing the address directly in the cell. For example, a link is created automatically when you type an email address, such as someone@example.com.

You can use the HYPERLINK function to create a link to a URL.

Note: The Link_location can be a text string enclosed in quotation marks or a reference to a cell that contains the link as a text string.

To select a hyperlink without activating the link to its destination, do any of the following:

  • Select a cell by clicking it when the pointer is an arrow.

  • Use the arrow keys to select the cell that contains the link.

You can change an existing link in your workbook by changing its destination, its appearance, or the text that is used to represent it.

  1. Select the cell that contains the link that you want to change.

    Tip: To select a hyperlink without activating the link to its destination, use the arrow keys to select the cell that contains the link.

  2. On the Insert tab, select Hyperlink.

    You can also right-click the cell or graphic and then select Edit Hyperlink… on the shortcut menu, or you can press Ctrl+K.

  3. In the Edit Hyperlink dialog box, make the changes that you want.

    Note: If the link was created by using the HYPERLINK worksheet function, you must edit the formula to change the destination. Select the cell that contains the link, and then select the formula bar to edit the formula.

  1. Right-click the hyperlink that you want to copy or move, and then select Copy or Cut on the shortcut menu.

  2. Right-click the cell that you want to copy or move the link to, and then select Paste on the shortcut menu.

To delete a link, do one of the following:

  • To delete a link, select the cell and press Delete.

  • To turn off a link (delete the link but keep the text that represents it), right-click the cell and then select Remove Hyperlink.

Need more help?

You can always ask an expert in the Excel Tech Community or get support in the Answers community.

See Also

Remove or turn off links


Download Article

Quick ways to add links to websites, files, and other cells in a Microsoft Excel workbook


Download Article

  • Link to a Location in a Workbook
  • |

  • Link to a Webpage
  • |

  • Link to Another File or Folder
  • |

  • Insert a Link to Send an Email
  • |

  • Video
  • |

  • Q&A
  • |

  • Tips

Do you need to add a hyperlink in your Excel spreadsheet? You can easily create links to websites, other documents, or even other cells and sheets within the same spreadsheet. Adding a link to a cell can help users reference other sources and materials for additional information or support. This wikiHow will show you how to create and insert clickable links in your Microsoft Excel spreadsheet using your Windows or Mac computer.

Things You Should Know

  • To open the Link menu, select the cell where you want your link. Click «Insert» → «Link».
  • For «Place in This Document», enter the cell location you want to link to.
  • For «Existing File or Web Page», copy and paste a URL into the «Address» field.
  1. Image titled Add Links in Excel Step 1

    1

  2. Image titled Add Links in Excel Step 1

    2

    Select the cell in which you want to create your link. You can create a shortcut link in any cell in your spreadsheet.

    Advertisement

  3. Image titled Add Links in Excel Step 3

    3

    Click Insert. This is the tab on the top toolbar, between Home and Page Layout.

  4. Image titled Add Links in Excel Step 2

    4

    Click Link. You can find this in the Links section of the Insert toolbar.

    • A new window will open.
  5. Image titled Add Links in Excel Step 3

    5

    Click Place in This Document. This will be in the left menu panel, under Existing File or Web Page. You’ll be able to add a link to any cell in your workbook.

    • If you want to link to a location in a different workbook, select Existing File or Web Page’, select the workbook, and then click Bookmark.
  6. Image titled Add Links in Excel Step 4

    6

    Enter the cell location that you want to link to. Enter a cell location, or select from defined cells or ranges.

    • To type a cell location, select the sheet from under the Cell Reference header. Then, type the specific cell (ex: B35) into the Type the cell reference field.
    • If you want to add a link to a named range, select the name of the range from the Defined Names header. If you select one of these, you won’t be able to type a location.
  7. Image titled Add Links in Excel Step 5

    7

    Change the displayed text (optional). By default, the link’s text will be the cell that you are linking to. You can change this by typing anything you’d like into the Text to display field.[2]

    • You can click the «ScreenTip» button to change the text that appears when a user hovers their mouse cursor over the link.
    • Click OK to apply your finished link.
  8. Advertisement

  1. Image titled Add Links in Excel Step 6

    1

    Copy the website you want to link to. To add a link to a webpage, you’ll need to find the URL. This can be found in the address bar at the top of your web browser.

    • Highlight the entire URL, right-click the link, then select Copy or Copy address.
    • You can also use a keyboard shortcut.
      • On Windows, highlight the text and press CTRL + C to copy.
      • On Mac, highlight the text and press Command + C to copy.
  2. Image titled Add Links in Excel Step 7

    2

    Select the cell in which you want to create your link. You can create a shortcut link in any cell in your spreadsheet.

  3. Image titled Add Links in Excel Step 10

    3

    Click Insert. This is the tab on the top toolbar, between Home and Page Layout.

  4. Image titled Add Links in Excel Step 8

    4

    Click Link. You can find this in the Links section of the Insert toolbar.

  5. Image titled Add Links in Excel Step 9

    5

    Select Existing File or Web Page. This will be the first option in the left panel.

    • If you’re using Excel 2011, select Web Page.
  6. Image titled Add Links in Excel Step 10

    6

    Paste the website link into the «Address» field. You can find this at the bottom of the window. Right-click the field, then click Paste.

    • You can also use a keyboard shortcut.
      • On Windows, click the field and press CTRL + V to paste.
      • On Mac, click the field and press Command + V to paste.
    • If you’re using Excel 2011, paste the link into the «Link to» field at the top of the window.
  7. Image titled Add Links in Excel Step 11

    7

    Change the text of the link (optional). By default, the link will display the full address. You can change this to any text you’d like, such as «Company Website».

    • Enter your new text in the Text to display field.
      • If you’re using Excel 2011, this is the «Display» field.
    • You can also click the «ScreenTip» button to change the text that appears when a user hovers their mouse cursor over the link.
  8. Image titled Add Links in Excel Step 12

    8

    Click OK to create the link. Your link will appear in the cell you selected earlier.

  9. Advertisement

  1. Image titled Add Links in Excel Step 20

    1

    Select the cell in which you want to create your link. You can add a link to a document or location on your computer or server into any cell in your spreadsheet.

  2. Image titled Add Links in Excel Step 17

    2

    Click Insert. This is the tab on the top toolbar, between Home and Page Layout.

  3. Image titled Add Links in Excel Step 21

    3

    Click Link. You can find this in the Links section of the Insert toolbar.

    • A new window will open.
  4. Image titled Add Links in Excel Step 22

    4

    Select Existing file or webpage. This will be the first option in the left panel. This option allows you to add a link to any location or document on your computer (or server) in Excel.

    • In Excel 2011 for OS X, click «Document» and then click «Select» to browse for a file on your computer.
  5. Image titled Add Links in Excel Step 23

    5

    Select a folder or file to link to. The quickest way to link to a specific file or folder is to use the file browser to navigate to the one you want. You can link to a folder or a specific file.

    • Click the drop-down menu next to Look in to navigate through the folders on your computer.
  6. Image titled Add Links in Excel Step 24

    6

    Type or paste an address for the file or folder (servers). You can enter the address for the file or folder instead of navigating to it with the browser. This can be especially useful for entering locations on another server.

    • To find the actual address for a local file or folder, open your Explorer window and navigate to the folder. Click the folder path at the top of the Explorer window to reveal the address, which you can then copy and paste.
    • To link to a location on a server, paste the address for the folder or location that will be accessible to the reader.
  7. Image titled Add Links in Excel Step 25

    7

    Change the text that is displayed (optional). By default, the link will display the full address to the linked file or folder. You can change this by changing the text in the «Text to display» field.

  8. Image titled Add Links in Excel Step 26

    8

    Click OK to create the link. You’ll see your link appear in the cell you had selected. Clicking it will open the file or folder that you specified.

    • Users of your spreadsheet will need to have access to the linked file from the same file location as used in your link. It may be more helpful to embed the file.
  9. Advertisement

  1. Image titled Add Links in Excel Step 13

    1

    Select the cell in which you want to create your link. You can insert a mail link into any cell in your spreadsheet.

  2. Image titled Add Links in Excel Step 14

    2

    Click Insert. This is the tab on the top toolbar, between Home and Page Layout.

  3. Image titled Add Links in Excel Step 15

    3

    Click Link. You can find this in the Links section of the Insert toolbar.

    • A new window will open.
  4. Image titled Add Links in Excel Step 27

    4

    Select E-mail Address. This will be in the left menu panel, underneath Create New Document.

  5. Image titled Add Links in Excel Step 16

    5

    Enter the email address you want to link to. Use the Email address field. You’ll see the «Text to display» field fill as you add the address. mailto: will be added to the beginning of the address automatically.

    • If you’ve entered email addresses before, you can select them under the Recently used e-mail addresses header.
  6. Image titled Add Links in Excel Step 17

    6

    Enter a premade subject into the «Subject» field (optional). You can leave the link as is if you’d like, but you can set a premade subject if you want to make things easier on your users.

  7. Image titled Add Links in Excel Step 18

    7

    Change the link text that will be displayed (optional). By default, the link will display mailto:address@example.com, but you can change this to whatever you’d like (ex: Contact Us).

    • Click the «Text to display» field and change the text.
    • Click the «ScreenTip» button to change the text that appears when the user hovers the mouse cursor over the link.
  8. Image titled Add Links in Excel Step 19

    8

    Click OK to insert your link. Your new email link will be created, and clicking it will open your email client or website with a new message addressed to the address you entered.

  9. Advertisement

Add New Question

  • Question

    Can a link be inserted into a jpeg file?

    Community Answer

    Yes, but you wouldn’t be able to open it.

  • Question

    How can I create a link that will add all weekly totals together so I have an annual total at the end of the year?

    Community Answer

    A macro would suit you better than a link. Use one to create a formula to add all the weeks.

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

Advertisement

  • To edit a link after creating it, right-click the cell that contains the link, then click Edit Link.[3]

  • To delete a link from your sheet, right-click the cell, then click Clear contents.

Thanks for submitting a tip for review!

Advertisement

Video

About This Article

Thanks to all authors for creating a page that has been read 543,486 times.

Is this article up to date?

HYPERLINK function in Excel returns a shortcut or hyperlink to a specific object, which can be a web page, a file saved in the PC’s permanent memory, a group of cells on a sheet in an Excel workbook.



HYPERLINK function and features of its arguments

HYPERLINK feature simplifies access to objects that are both parts of Excel (cells, sheets of a book), as well as parts of other software products (notepad, Word file) or pages on the Internet. This function has the following syntax entry:

=HYPERLINK(Link_location,[Friendly_name])

Description of 2 parameters of the function arguments:

  • Link_location is a text value corresponding to the name of the object being opened and the full path to access it. This parameter is required. The address may indicate a specific part of the document, for example, a cell or a range of cells, a bookmark in a text editor Word. The path may contain data about the path to the file in the PC file system (for example, “C:UserssoulpDocuments”) or the URL address to a page on the Internet.
  • [Friendly_name] is the text value that will be displayed as the text of the hyperlink. Displayed in blue with underlined text.

Notes:

  1. The address and [Friendly_name] parameters take values as a text string in quotes (“address”, “name”) or links to cells containing the address and object name, respectively.
  2. In Excel Online (an online version of the Excel program for working through the web interface), the HYPERLINK function can only be used to create hyperlinks to web objects, since browser applications do not have access to device file systems.
  3. If in the cell to which the [name] parameter refers, the value of the error code #VALUE !, was set, the text of the created hyperlink will also display «#VALUE!».
  4. To select a cell containing a hyperlink, without navigating through it, you must hover the mouse over the desired cell, press and do not release the left mouse button until the cursor changes its shape to “+”. Then you can release the mouse button, the desired cell will be highlighted.
  5. In the online version of Excel, to highlight the cell containing the hyperlink, you must move the cursor so that it looks like a normal arrow. To navigate through the hyperlink, you must hover the cursor directly on its text. In this case, the cursor will look like a hand.
  6. To create a hyperlink to an Internet resource, you can use the following entry: =HYPERLINK(“http://www.bing.com/”,”BING Search Engine”).
  7. A hyperlink to a document stored in the PC file system can be created as follows: =HYPERLINK(“C:UserssoulpDownloadsdocument_2”,”Link to document_2”). When you click on this link, a dialog box appears with a warning about the possible presence of malware in the file. To open the file, you must click the «OK» button in this dialog box. If there is no file in the specified path, a corresponding notification will appear.
  8. To create a link to another sheet in the Excel workbook, you can use a similar entry: =HYPERLINK(“[Book1.xlsx]Sheet2!A1”,”Sheet2”). When you click on this link, Sheet2 will be opened, and the focus will be set on cell A1.
  9. The hyperlink can be inserted using the visual user interface (the corresponding context menu item, the button on the taskbar).



Examples of using HYPERLINK function in Excel

How to create a link to a file in Excel? Example 1. An enterprise accountant performs various calculations and stores data tables in Excel in one book (Accounting.xlsx) containing multiple sheets. For convenience, it was decided to create a separate sheet with a table of contents in the form of hyperlinks to each of the available sheets.

On the new sheet, create the following table:

Example 1.

To create a hyperlink we use the formula:

HYPERLINK.

Description of the function arguments:

  • «[Example_1.xlsx] Profit! A1» is the full address of cell A1 of the «Profit» sheet of the book «Example_1.xlsx»;
  • «Profit» — the text that will display the link.

Similarly, create hyperlinks for other pages. As a result, we get:

create hyperlinks.

Dynamic HYPERLINK to Excel

Example 2. The Excel spreadsheet contains data on the rates of certain currencies, which are used to perform various financial calculations. Since exchange rates are dynamically changing values, the accountant decided to place a hyperlink to a web page that provides relevant data.

Source table:

Example 2.

To create a link to the resource https://www.xe.com/currencyconverter/, in cell D7, enter the following formula:

Description of parameters:

  • https://www.xe.com/currencyconverter/ — URL address of the required site;
  • «Exchange Rates» — the text displayed in the link.

As a result, we get:

URL address.

Note: the specified web page will be opened in the browser used in the system by default.

Sending emails via Excel HYPERLINK

Example 3. An enterprise employee has difficulty using the IF function in Excel. To solve a problem in one of the documents, it has a ready-made form for sending an email. Sending a letter occurs by clicking on the hyperlink. Consider how this form of sending letters is arranged.

The form is as follows:

Example 3.

The values of cells B3 and B4 can be changed at the discretion of the user (depending on the reason for contacting the support service). Cell B5 contains the function:

CONCATENATE.

CONCATENATE – this function performs concatenation (concatenation of text strings taken as parameters).

Description of parameters:

  • «mailto:» — command to send letters;
  • B2 — cell containing email support services;
  • «?subject=» — command to write the subject of the letter;
  • ENCODEURL(B3) — a function that converts the text of a letter subject to a URL encoding;
  • «& body =» — the command to write the text of the letter;
  • ENCODEURL(B4) — the text of the letter in the encoding URL.

Cell B6 has the following function:

following.

Description of parameters:

  • B5 — URL command to send a letter containing the subject and text of the letter;
  • «Send Letter» is the name of the hyperlink.

Download examples HYPERLINK function to create in Excel

Clicking on the link will open the default mail client, for example, Outlook (but in this case, the standard Windows client).

Working with Excel, a day will come when you’ll need to reference data from one workbook in another one. It’s a common use case and pretty easy to pull off. Join us as we explain how to link two Excel files and discuss many possible scenarios.

How to link Excel files – what are the available options?

Just as there are many different versions of Excel, the ways to link data also differ. It’s a lot easier if you share your Excel files in OneDrive rather than locally but we’ll discuss both scenarios.

Choosing how to link data depends also on the sheer volume of what you wish to link. If we’re talking here about particular cells or a column from your workbook, the default methods will do just fine. If you’re after linking entire Excel files, using tools such as Coupler.io with its Excel integrations may prove to be more efficient. But we’ll get to that!

You can link two or more Excel files stored on your hard drive. When the data changes in a Source file, the change will be quickly reflected in the Destination file.

The drawback of this approach is that it will only work on your local machine. Even if you share both files with another user, the link will cease to exist and they’ll be forced to re-add it. What’s more, the data will be only updated if both files are open at the same time.

So if you have a choice, it’s better to add both files to your OneDrive. If they’re already in there, you may as well jump to the How to link between Cloud-based Excel files section.

To link 2 Excel files stored locally, you have two options:

  • Type in a formula referencing the exact location in a Source file
  • Copy the desired cells and paste them as a link

How to link between files in desktop Excel?

To reference a single cell in another local file, you’ll use the following formula:

=[SourceWorkbook.xlsx]Sheet1!$A$1

Replace SourceWorkbook.xlsx with the name of the file stored on your machine. Then, point to an exact sheet and a cell. A reference to a range of cells could like this:

=[MyFile.xlsx]Sheet1!A1:C8

Press ENTER to save the formula and pull the data. If you’re on an older version of Excel, you may need to press CTRL+SHIFT+ENTER instead.

1 - excel cell range

When you close the Source file, the formulas will change to include the entire path of the file – for example:

='C:[MyFile.xlsx]Sheet1'!A1:C8

2 - excel full path

As an alternative, you can: 

  • Open a Source file, select the desired cells, and copy them.

3 - excel copy range

  • Head back to the Destination file, right-click on a desired cell or cells and choose to paste as a link.

4 - excel paste as link

  • Here is the result:

5 - excel links

Note that if the Source file is closed, and you reference it with a formula, no data will be pulled until you open a file. 

How to link between cloud-based files in Excel?

When you wish to link Excel Online files or use those stored in OneDrive, things become easier. You can freely share files among coworkers and any interlinking won’t be affected. Links in files also refresh in near real time, giving you peace of mind that you’re working with the latest data.

The feature that enables it is called Workbook Links. We’ll explain how it works in the following chapters.

Workbook Links are suitable for individual cells or ranges of them. You may also link individual columns but the more data is involved, the slower your calculations will be. If you’re going to be linking entire worksheets or workbooks, it’s far better to focus on importing, rather than linking them. This is best done with dedicated tools. 

There is more on that in the How to link a wide range of cells to Excel or another service chapter.

How to link two Excel files?

Let’s start with a most basic use case – you’re running some operations in your Excel workbook. In one of the fields, you wish to use the value(s) from another workbook and have it update automatically.

The flow is simple:

  • In workbook 1 (source), highlight the data you want to link and copy it.
  • In workbook 2 (destination), right-click on the first row and select the Link icon.

6 - excel online paste link

The latest data will be imported. A yellow bar will, however, appear now as well as every time you open a destination workbook.

7 - excel data connection disabled

To enable the data sync, select Enable Content. 

For some more advanced settings, you can choose the Manage Workbook Links button to look up the list of connected workbooks and a status for each – most likely it will be Connection Blocked

To sync, press the Enable Content button from the yellow bar.

8 - excel enable content

If any errors occur, you’ll see them in the menu to the right. For each of the connected files, you can press the Refresh button to manually pull the latest data. You can also use the button above to refresh data for all your links.

Of course, the whole idea of creating links between workbooks is not to keep refreshing the data manually. Once the data has been refreshed, an option to set automatic updates will be enabled.

9 - excel refresh connection

If you tick Refresh automatically, the data will start to refresh periodically. 

How to link a wide range of cells to Excel or another service?

The more data you link, the more computing your Excel needs to perform to pull the data and refresh it. It’s not an issue if you have a few or a few dozens of links spread across files. 

However, if you wish to regularly pull thousands of cells into your workbooks, it will significantly slow down your workbooks. It may delay the data refresh and may leave you wondering whether the data has already been refreshed or not.

To avoid that, for larger operations it’s better to use tools dedicated to importing data such as Coupler.io. With Coupler.io, you can pull the desired ranges of cells directly into another Excel workbook or worksheet. You can then refresh the data automatically at a chosen schedule.

If you wish to, you can also import the Excel data to other services, such as Google Sheets or Google BigQuery, or bring it to Excel from Airtable, Pipedrive, Hubspot, and many others.

To get started with Coupler.io, create an account, log in, and click the Add an importer button.

From the list of source applications, choose Excel.

10 - coupler excel destination

Next, click the Connect button. Log in with your Microsoft account and allow for Coupler.io to connect.

Once connected, you’ll need to choose the workbook from your OneDrive that we’ll be importing from. Also select the worksheet in this file.

11 - coupler excel source

Although it’s optional, most often you’ll want to specify the range of cells to import. If you don’t, all data from a given sheet will be fetched.

You may use the standard Excel formatting and pull, for example, cells C1:D8. You may also pull an entire column by typing, for example, C1:C.

12 - coupler excel cell range

Jumping to the Destination settings, choose where to import the data to. We’ll go with Excel as we just want to move the data from one workbook to another but there are other options available too.

13 - coupler excel destination

If you’re importing from Excel to Excel, there’s no need to connect your account again, unless you’re importing to someone else’s account. Select it, and specify the exact destination.

Finally, you can create a schedule for when the data should be imported. Choose what works best for you and run the importer.

14 - coupler excel schedule

Give it a little while to load, and then open the destination worksheet to see the results.

15 - excel import results

How to link Excel files and sync in real-time?

One of the advantages of using Excel files stored on OneDrive is their ability to sync data between one another. Microsoft advertises it as real-time sync but after some tests, we would call it a near real time. 

If you’re used to the refresh rate of Google Sheets, for example, you may be disappointed. However, in most situations, a slight delay won’t cause any trouble.

To link files in Excel, follow the steps we outlined in the How to link Excel files chapter.

When data is changed in the destination file, most likely you won’t see an update visible right away in the source file. If you do nothing about it and just move on to the next task, you should see a refreshed number in a cell in a few minutes’ time. It will then continue refreshing at regular intervals.

If you want to speed things up, you can run an instant refresh by clicking Data -> Workbook Links in the menu and then the icon to refresh the data from a particular workbook.

16 - excel workbook refresh

This will often work, but only if the data in the source workbook has already been saved. Once again, it doesn’t happen instantly but only at regular (quite frequent) intervals. 

If you’re anxious to have the data refreshed presently, you may consider refreshing the source file after making a change. This will prompt an automatic save. After that, manually force a data refresh in the destination file and it will fetch the latest saved data.

As a reminder, if you use Coupler.io to import data from one Excel workbook to another, you decide on the refresh schedule. For some, morning sync from Monday to Friday will do just fine. Others will prefer more frequent syncs – with Coupler.io you can even do it every 15 minutes. 

FAQ: How to link Excel files

Let’s now discuss some specific use cases for how to link files in Excel. The tips below apply for files stored in OneDrive. If you only use Excel locally, jump back to the How to link local files in Excel section.

How to link cells in different Excel files?

For linking individual cells across files, the procedure is very much the same as we discussed earlier:

  • Highlight the cell you want to reuse elsewhere and copy it.
  • Right-click on the desired destination and select the Link icon from the Paste Options section.

If you’re importing to the same workbook as before, you won’t need to Enable Content again. If you reloaded it in the meantime, or are just linking the data to a new workbook, choose Manage Workbook Links and then Enable Content from the same bar.

Note that if you link multiple sets of cells or data ranges from the same workbook serving as a Source, they will all appear as a single position on your list of Workbook Links. 

In the example below, you can see the data we imported from our sample Shopify store using Coupler.io. 

We have a range of prices to the left linked from the respective workbook. Below there’s also a name of one of our products linked from another place in the same workbook. To the right, we can refresh data for all linked fields or, for example, enable automatic data refreshes.

17 - excel refresh all links

How to link two Excel files without opening the source file?

You can link files in Excel without actually opening the source file. Of course, you’ll need to know the exact location of the cell or range of cells you wish to link. What’s more, to link Excel Online files or anything else stored on your OneDrive, you’ll need to fetch your unique ID.

To do so, set up a link in the traditional way we described above. Then, click on any linked cell in the Destination file and check its formula. It will look something like this:

='https://d.docs.live.net/18644c626caae38c/[myworkbook1.xlsx]Sheet1'!$C$2

The ID will follow right after the live.net link:

18 - excel id

To insert a link from any given workbook, copy the formula with your ID and swap the file name and the cell range with the right values. Press ENTER and the latest data will be fetched.

How to link Excel columns between files?

Choosing a range of cells limits you to only the values currently present in the Source workbook. If anything new appears, it won’t be linked and, as such, won’t appear in the Destination workbook.

The solution is often to link an entire column and reference it in another file. To do so, click on any column in the Source file and copy it.

19 - excel copy column

Then, select the first row of a column you want to add a link to and choose the Link icon. All the rows from the chosen column will be imported.

20 - excel paste column as link

Rather than click, you can also enter the formulas directly. To link an entire column, it’s best to link to the first cell and then stretch the formula to the other rows.

When you insert the formula for the first row, be sure to remove the second $ (dollar) sign pointing to the specific cell. So, instead of the reference:

(...)Sheet1'!$C$2

Make it:

(...)Sheet1'!$C2

How to link fields between multiple files in Excel?

Advanced calculations may require referencing data from multiple spreadsheets at the same time. In the same way, the calculated data can then be referenced in other workbooks, creating a complex network of interconnected links.

As you recall from the earlier chapters, the formulas for linking cells between Excel Online files look somewhat like this:

='https://d.docs.live.net/18373e637ca3e48c/[Shopify Products - prices.xlsx]Sheet1'!$C$8

For the purpose of running any calculations or just adjusting the formulas as we go, the link is far too complex. It’s much better to link the desired fields into the destination workbook and then reference them from another worksheet in the same workbook.

To do so, create a separate worksheet in your destination file where you’ll link all the external data. Name it accordingly – for example, “Sources”. Link the desired data by copying it from the source file and then pasting it as links (just as we did before).

Then, jump to the worksheet in the destination file. To reference the data from another sheet, use the following pattern:

Sheet_name!$A$1

For example, for calculating the average value of a range of cells present now in another worksheet, we would use:

=AVERAGE(Sources!B2:B12)

21 - excel sources tab

You can also type in the “=” sign (plus optionally a function name) and then jump to another worksheet and highlight the arguments. Press ENTER and the formula will be resolved.

In the standard version of Excel, the approach is pretty much the same, just with some small changes in the syntax of the links, as we mentioned earlier.

How to link Excel files – summing up

Linking Excel files can save you plenty of time and help you automate many dull processes. 

It can also make things harder if you begin to link from one file to another, then to another, and another. The more interconnected workbooks become, the more complex it will be to troubleshoot the entire flow. 

Find the right balance and use the right methods for linking your data.

When moving individual cells or ranges of them, Workbook Links work perfectly and are very easy to set up.

For moving large sets of data between workbooks or linking entire files, it’s a lot better to use tools such as Coupler.io. You’ll be able to set up your own schedule for imports, and all data transfers will happen outside of Excel. As a result, no Excel resources will be used, and you’ll be able to work much more smoothly while the information is synced in the background.

Thanks for reading!

  • Piotr Malek

    Technical Content Writer on Coupler.io who loves working with data, writing about it, and even producing videos about it. I’ve worked at startups and product companies, writing content for technical audiences of all sorts. You’ll often see me cycling🚴🏼‍♂️, backpacking around the world🌎, and playing heavy board games.

Back to Blog

Focus on your business

goals while we take care of your data!

Try Coupler.io

Adding Excel Hyperlinks, Bookmarks, and Mailto Links

Updated on November 12, 2019

Ever wondered how to add hyperlinks, bookmarks, or mailto links in Excel? The answers are right here.

The following steps apply to Excel for Microsoft 365, Excel 2019, Excel 2016, Excel 2013, Excel 2010, Excel 2019 for Mac, Excel 2016 for Mac, Excel for Mac 2011 and Excel Online.

What Are Hyperlinks, Bookmarks, and Mailto Links?

First, let’s clarify what we mean with each term. 

hyperlink provides a way to open a web page by selecting a cell in a worksheet. It’s also used in Excel to provide quick and easy access to other Excel workbooks.

bookmark creates a link to a specific area in the current worksheet or to a different worksheet within the same Excel file using cell references.

mailto link is a link to an email address. Selecting a mailto link opens a new message window in the default email program and inserts the email address into the To line of the message.

In Excel, both hyperlinks and bookmarks are intended to make it easier to navigate between areas of related data. Mailto links make it easier to send an email message to an individual or organization. In all cases:

  • No matter which type of link is created, it is created by entering the necessary information in the Insert Hyperlink dialog box.
  • As with links in web pages, links in Excel are attached to anchor text located in a worksheet cell.
  • Adding this anchor text before opening the dialog box simplifies the task of creating the link, but it can also be entered after the dialog box is open.

Open the Insert Hyperlink Dialog Box

The key combination to open the Insert Hyperlink dialog box is Ctrl+K on a PC or Command+K on a Mac.

  1. In an Excel worksheet, select the cell that will contain the hyperlink.
  2. Type a word to act as anchor text such as «Spreadsheets» or «June_Sales.xlsx» and press Enter.
  3. Select the cell with the anchor text a second time.
  4. Press and hold the Ctrl key (in Windows) or the Command key (on Mac).
  5. Press and release the letter K key to open the Insert Hyperlink dialog box.

How to Open the Insert Hyperlink Dialog Box Using the Ribbon

  1. In an Excel worksheet, select the cell that will contain the hyperlink.
  2. Type a word to act as anchor text such as «Spreadsheets» or «June_Sales.xlsx» and press Enter.
  3. Select the cell with the anchor text a second time.
  4. Select Insert. (In Excel 2011 for Mac go to the Insert menu.)
  5. Select Hyperlink or Link > Insert Link in the Links group. The Insert Hyperlink dialog box opens.

Add a Hyperlink in Excel

Here’s how to set up a hyperlink to jump to a web page or to an Excel file.

Add a Hyperlink to a Web Page

  1. Open the Insert Hyperlink dialog box using one of the methods outlined above.
  2. Select the Existing File or Web Page tab.
  3. In the Address line, type a full URL address.
  4. Select OK to complete the hyperlink and close the dialog box.

The anchor text in the worksheet cell is blue in color and underlined to indicate it contains a hyperlink. Whenever it is selected, it will open the designated website in the default browser.

Add a Hyperlink to an Excel File

Note: This option is not available in Excel Online.

  1. Open the Insert Hyperlink dialog box.
  2. Select the Existing File or Web Page tab.
  3. Select Browse for file to open the Link to file dialog box.
  4. Browse to find the Excel file name, select the file, and select OK. The file name is added to the Address line in the Insert Hyperlink dialog box.
  5. Select OK to complete the hyperlink and close the dialog box.

The anchor text in the worksheet cell changes to blue in color and is underlined to indicate it contains a hyperlink. Whenever it is selected, it will open the designated Excel workbook.

Create a Bookmark to the Same Excel Worksheet

A bookmark in Excel is similar to a hyperlink except that it is used to create a link to a specific area on the current worksheet or to a different worksheet within the same Excel file.

While hyperlinks use file names to create links to other Excel files, bookmarks use cell references and worksheet names to create links.

How to Create a Bookmark to the Same Worksheet

The following example creates a bookmark to a different location in the same Excel worksheet.

  1. Type a name in a cell that will act as the anchor text for the bookmark and press Enter.
  2. Select that cell to make it the active cell.
  3. Open the Insert Hyperlink dialog box.
  4. Select the Place in This Document tab (or select the Place in this document button in Excel Online).
  5. In the Type the cell reference text box, enter a cell reference to a different location on the same worksheet, such as «Z100.»
  6. Select OK to complete the bookmark and close the dialog box.

The anchor text in the worksheet cell is now blue in color and underlined to indicate that it contains a bookmark.

Select the bookmark and the active cell cursor moves to the cell reference entered for the bookmark.

Create a Bookmark to a Different Worksheet

Creating bookmarks to different worksheets within the same Excel file or workbook has an additional step. You’ll also identify the destination worksheet for the bookmark. Renaming worksheets can make it easier to create bookmarks in files with a large number of worksheets.

  1. Open a multi-sheet Excel workbook or add additional sheets to a single sheet file.
  2. On one of the sheets, type a name in a cell to act as the anchor text for the bookmark.
  3. Select that cell to make it the active cell.
  4. Open the Insert Hyperlink dialog box.
  5. Select the Place in This Document tab (or select the Place in this Document button in Excel Online).
  6. Enter a cell reference in the field under Type in the cell reference.
  7. In the Or select a place in this document field, select the destination sheet name. Unnamed sheets are identified as Sheet1, Sheet2, Sheet3 and so on.
  8. Select OK to complete the bookmark and close the dialog box.

The anchor text in the worksheet cell is now blue in color and underlined to indicate that it contains a bookmark.

Select the bookmark and the active cell cursor moves to the cell reference on the sheet entered for the bookmark.

Insert a Mailto Link Into an Excel File

Adding contact information to an Excel worksheet makes it easy to send an email from the document.

  1. Type a name in a cell that will act as the anchor text for the mailto link and press Enter.
  2. Select that cell to make it the active cell.
  3. Open the Insert Hyperlink dialog box.
  4. Select the E-mail Address tab (or select the Email Address button in Excel Online).
  5. In the Email address field, enter the email address of the person who will receive the email. This address is entered in the To line of a new email message when the link is selected.
  6. Under the Subject line, enter the subject for the email. This text is entered into the subject line in the new message. This option is not available in Excel Online.
  7. Select OK to complete the mailto link and close the dialog box.

The anchor text in the worksheet cell is now blue in color and underlined to indicate it contains a hyperlink.

Select the mailto link and the default email program opens a new message with the address and subject text entered.

Remove a Hyperlink Without Removing the Anchor Text

When you no longer need a hyperlink, you can remove the link information without removing the text that served as the anchor.

  1. Position the mouse pointer over the hyperlink to be removed. The arrow pointer should change to the hand symbol.
  2. Right-click on the hyperlink anchor text to open the context menu.
  3. Select Remove Hyperlink.

The blue color and the underline should is removed from the anchor text to indicate that the hyperlink has been removed.

Thanks for letting us know!

Get the Latest Tech News Delivered Every Day

Subscribe

Понравилась статья? Поделить с друзьями:
  • Form a noun from the word see
  • For letter in word python
  • Form a new word that best fits each gap
  • For letter in word print letter
  • Form a new word from the root we are not