How To Hyperlink In Google Sheets (Ultimate Guide)

You can add hyperlinks in Google sheets to quickly access external web pages, another sheet in Google sheets, or even a cell in the sheet itself.

The simplest way to add a hyperlink in Google Sheets is to select the cell and click on the “insert link” button on the toolbar. This will open up the link options. Paste the link and click apply and that’s it! 

In this post, I’ll give you a detailed breakdown of how to hyperlink in Google sheets along with a few useful ways of using hyperlinks in various use cases.

There are 4 ways to hyperlink in Google sheets:

  1. Keyboard shortcut,
  2. The toolbar shortcut,
  3. Options menu,
  4. The hyperlink formula.

This is my favorite method of adding a hyperlink because it’s super fast. If you are like me and you prefer using shortcut keys to increase productivity, then you can use:

  • Ctrl + K is the hotkey on Windows,
  • Cmd + K is the hotkey for Mac

You will see a dialog box popping up:

The screenshot shows a dialog box that shows up after using a keyboard shortcut to add a hyperlink

The next steps are the following:

Step 1: Insert the URL you want to be your link anchor

An arrow points to the 'text' field where you can add any text that you would like to be your link anchor

Step 2: Insert the web address you want to create a hyperlink to in the text box.

An arrow points to the 'URL' field where you can add any valid URL that you would like to be your link

Step 3: Click on apply or hit Enter to create the hyperlink.

The arrow point to the Apply button that will confirm the operation and add hyperlink to the selected A1 cell

Now you can see that the text in the cell turned blue and underlined, indicating it is a link.

The screenshot shows the final effect of creating a hyperlink. A1 cell has 'click here' text that links out to the mightyspreadsheets.com website

To edit or remove the hyperlink, click on the cell and select Edit link or Remove link from the options that appear below the hyperlink.

Using the toolbar shortcut is pretty straightforward and will be a great solution in many cases so let’s explore it now:

Step 1: Focus on the cell where you want to add a hyperlink

The screenshot shows focus on B1 cell

Step 2: Click on the Hyperlink icon

The screenshot shows arrows pointing to the hyperlink icon available in the toolbar. It's 5th icon from the right hand side

Step 3: Fill the popup with anchor text and your link and click Apply

The screenshot shows a dialog box that shows after clicking on the hyperlink icon. The 'text' field is filled in with 'go to google' content and the URL goes to google main page

Easy peasy lemon squeezy! You just created a hyperlink using a toolbar icon and this is how the final effect looks like:

The screenshot shows the final effect of adding a hyperlink. The anchor says 'Go to google' and links out to google.com website

Now let’s take a look at the other options in greater detail.

3. Use the Options Menu To Create a Hyperlink

To create a clickable link in Google sheet using the options menu, you need to follow these steps:

Step 1: Select the cell you want to the hyperlink.

The screenshot shows C1 cell being focused on

Step 2: Select “Insert” from the Options Menu, then just click on the “Link” option, and a small dialog box will show up.

The screenshot shows how to select a link from the Options Menu. First arrow points to the 'Insert' menu item and the second arrow points to the 'Link' sub-menu item (it's 5th option from the bottom)

Step 3: Provide anchor text and the URL for the link

The screenshot shows the dialog box being filled up with the text ('Go to Apple') and the URL (https://apple.com)

Quick Tip – You can quickly access this option by right-clicking on the cell and selecting the Insert link option from the menu 👇👇👇

The screenshot shows a contextual menu that appears when you click with your right mouse button on a call. It contains the 'Insert Link' menu option. It's 5th item from the bottom.

Using the formula method to create a hyperlink is a little bit more complicated than using the options menu. But it is worth knowing how to do so.

You can create a hyperlink with a simple syntax in Google sheets.

=HYPERLINK(“URL”, “TEXT”)

  • URL – The link to the web address that needs to be inserted as the hyperlink. It should be enclosed within double quotes.
  • TEXT – The text that needs to be shown in the cell. This too must be placed in double quotes.
  • The URL and TEXT values are separated by a comma. 

Have a look at the example below:

=HYPERLINK("https://mightyspreadsheets.com", "Mighty Spreadsheets")

Once clicked or hovered over the cell, the link is shown in a small popup box. The web page will open in a new tab after clicking on the link.

We can create hyperlinks between sheets in the same document in Google sheets. This is very useful when you are managing several sheets in a single document.

To add a clickable link to another sheet in Google sheets follow these steps:

Step 1: Select the cell in which you want to insert the hyperlink.

The screenshot shows selection of the E1 cell

Step 2: Get the Insert link dialog box by using any of the methods we talked about earlier

The screenshot shows dialog box popup that can be filled with anchor text and URL

Step 3: In the dialog box, click on ‘Sheets and named ranges’.

The arrow on the screenshot points on 'Sheets and named ranges' option in the dialog box

Step 4: A list of available sheets in the document will appear. Select the sheet which you want to link.

The arrow points on list of all worksheets available in the document

Step 5: Click on Apply or hit enter to create the hyperlink.

Now when you click on the hyperlink it will automatically open the worksheet you linked to:

The gif shows what happens when you click on the hyperlink that links to another worksheet

Creating a hyperlink to a cell or a cell range in Google sheets is pretty similar to linking another sheet.

To add hyperlinks to a cell range in Google sheets:

Step 1: Select the cell and get the Insert link dialog box

Step 2: In the dialog box, click on ‘Sheets and named ranges’. There is an option as ‘Select a range of cells to link’ below the sheets. Click on it.

The arrow on the screenshot points on 'Sheets and named ranges' option in the dialog box

Step 3: A text box will appear.

  • If you want to link a single cell, Insert the cell’s reference. (Example: B25)
  • To link a range of cells, insert the first and last cell numbers separated by a colon (Example: E4:H8)
  • You can also link to a named range of cells if you previously created one

Step 4: Click on Apply or hit enter to create the hyperlink.

You can also use hyperlinks to direct someone to an external website from Google sheets.

So how to paste a link in google sheets? Simply, we already covered it at the beginning of this article:

Step 1: Select the cell and get the Insert link dialog box.

Step 2: In the textbox, type or paste the URL you want to add as a hyperlink. Click Apply.

Clicking on these hyperlinks will open the web page in a new tab.

Dynamic hyperlinks are links that change based on cell values.

Dynamic hyperlinks should be created using the formula we talked about earlier.

To create a dynamic hyperlink using the HYPERLINK function we have to insert the sheet name and the cell reference followed by a hash symbol (#). So, the generic version of the formula will be 

=HYPERLINK(“URL“&CELL_REFERENCE,“CELL_TEXT”) 

  • CELL_REFERENCE – The reference (ID) of the cell where your link needs to get the data.
  • CELL_TEXT – The text that needs to be shown in the cell.

Let’s take a look at a real-life example to get a better idea:

=HYPERLINK("https://apple.com/"&G2, "Link")

Depending on the value of the G2 cells you will be redirected to different pages. For example, if the G2 cell value was “mac” you would be redirected to “https://apple.com/mac” if the value of the G2 cell was “iphone” you would be redirected to “https://apple.com/iphone

The screenshot shows new email creation box after clicking on the mailto link

You can add hyperlinks to send an email by either the Insert link method or the formula method. 

The insert link method is easier but the formula method comes in handy with more options such as creating a hyperlink to multiple email addresses at once.

  1. Select the cell and get the Insert link dialog box.
  2. In the textbox, type “mailto:” and then insert the email address you want to add as a clickable link in google sheets and click apply.

Using the formula method:

You can use the below syntax to create a hyperlink in Google sheets.

=HYPERLINK("mailto:EMAIL_ADDRESS","CELL_TEXT")

  • EMAIL_ADDRESS – The email address to which you want to send an email.
  • CELL_TEXT – The text that needs to be shown in the cell.

For example,

=HYPERLINK(“mailto:[email protected]“, “Luke’s email”)

To edit a hyperlink in Google sheets, 

Step 1: Click on the cell where you created the hyperlink.

Step 2: A small popup box will appear which shows the link that it contains. There are 3 icons next to the link. 

The screenshot shows a contextual menu that appears when you click on the existing link.

Step 3: Click on the pencil icon in the middle to edit the hyperlink. It will show the dialog box which we use to create the hyperlink. 

Arrow on the screenshot points to a pencil icon that allows user to edit link anchor text or URL

Step 4: Edit the details and click on Apply button to save the changes.

To remove a hyperlink in Google sheets, 

Step 1: Click the hyperlinked cell.

Step 2: A small popup box will appear which shows the link that it contains. There are 3 icons next to the link. 

The screenshot shows a contextual menu that appears when you click on the existing link.

Step 3: Click on the third icon to remove the hyperlink.

Arrow on the screenshot points to an icon that allows you to remove hyperlink

Creating a hyperlink in the Google Sheets mobile app is pretty similar to the desktop version there are however some minor differences between Android and IOS devices.

At the time of writing this article, there’s no way to add a hyperlink from the Options menu in the IOS app. Here’s what you need to do if you want to add it on your phone (or tablet):

Step 1: Open the document and tap to select the cell that you want to create a hyperlink. 

Step 2: Use the hyperlink formula to add your link.

The screenshot shows how to add HYPERLINK formula to A1 cell in Google Sheets IOS app

For example:

=HYPERLINK(“https://apple.com/”, “Click here”)

Step 3: Apply your formula by clicking on the tick icon

The arrow points to the tick box that will confirm and apply the formula to the A1 sheet. The green tick box is located in the bottom right corner of your screen

Note: When you click on the link it won’t open automatically. You will need to select “Open link” from the contextual menu

The screenshot shows contextual menu that contains 'open link' option in IOS app

Step 1: Open the document and tap to select the cell that you want to create a hyperlink. 

Step 2: Click on the + sign next to the cell or the Insert option from the top menu. (This may depend on your device and the app version) 

Step 3: From the drop-down menu that appears, select the Link option to add a hyperlink.

Step 4: Paste or insert the URL you want to add and a text to show in the cell.

Some Other Questions You May Have

You can put hyperlinks to multiple words in the same cell using Google sheets.

The only difference is, you should select the word or words using the mouse pointer instead of just selecting the whole cell. 

Step 1: Select the word(s) you need to add a hyperlink.

A1 cell on the screenshot contains 'Link 1, Link 2, link 3' text and we are highlighting just part of it which is the 'Link 1' part

Step 2: Select the Link option from the insert menu or the Insert link option from the right-click menu.

The screenshot shows where to access add hyperlink option from the toolbar menu

Step 3: Insert the link address and click on apply or hit enter to create the hyperlink.

The screenshot shows dialog box that will pop up after we click on the link icon

And this is the final effect:

The screenshot shows the final effect where the hyperlink is only applied to part of the text in A1 cell

You can repeat the process to add hyperlinks to other words.

There can be a couple of reasons why hyperlinks are not working. First, check whether you have entered the link address correctly. If you copied the link from someplace, see if you copied the full link without missing any letters.

It could also be that the linked website might be down or changed to another URL. Try accessing the link using a browser to check if there is something wrong with the web page.

If you are creating the hyperlink using the formula method, thoroughly check whether you are doing it with the correct syntax. A single mistake will cause the hyperlink to not work.

You can hyperlink an image in Google Sheets, however, it is a little bit more tricky than using text. But don’t worry, I’ll break it down step by step on how to hyperlink an image in Google Sheets.

First up, your image must be on the internet to copy the URL.

For example, you can get it from an external website (such as Pexels)

Adding a hyperlink to an image should be done with the formula method I explained earlier. This is achieved by including the IMAGE function with the HYPERLINK function in Google sheets. 

 Follow the below syntax to add a hyperlink to an image.

=HYPERLINK(“URL”, IMAGE(“IMAGE_URL”))

  • URL – The link to the web address that needs to be inserted as the hyperlink. 
  • IMAGE_URL – Web link of the image you want to create the hyperlink. 

Example hyperlink formula to get a better idea:

=HYPERLINK("https://youtube.com", IMAGE("https://upload.wikimedia.org/wikipedia/commons/e/e1/Logo_of_YouTube_%282015-2017%29.svg"))

Google sheets will automatically insert the image from IMAGE_URL you provide and create the hyperlink with the URL.

The screenshot shows the HYPERLINK formula applied with an IMAGE formula inside it. It results with 'Youtube' logo being displayed and linking to the Youtube main page

To have an image from your local PC or Google Drive as the hyperlink image, first, you should upload it as a Google drawing.

Step 1: Go to your Google Drive, Click on New, and select Google Drawings from the drop-down menu. (or you can go directly to Google Drawings by clicking on this link

The screenshot shows how to access Google Drawings from the Google Drive contextual menu

Step 2: Click on:

  1. Insert” menu item from the top menu,
  2. then on the “Image” sub-menu item
  3. finally, select “Upload from computer“.
The screenshot shows how to upload image from computer using Google Drawings Options Menu

Step 3: Now you can upload the image from your PC or Google drive by browsing the files. Or else, simply drag and drop the image onto the blank drawing sheet.

Step 4: Adjust the image as you like. Remove any unwanted margins to give the hyperlink a better look.

The gif shows the process of adjusting a freshly added image. You need to click in the bottom right corner to adjust the workspace for the file

Now the image is ready and we have to publish it to the Web in order to get the URL.

Step 5: Click on the File menu item and select Publish to Web option under the Sharing section.

The screenshot shows how to publish your google drawings image to web

Step 6: Make sure you have selected the Link tab and resize the image size (you can pick from 3 options: small, large, or medium.

The screenshot shows image size editing options before you publish your image

Step 7: Click on the Publish button and now you will see a link is created for the image.

Arrow on the screenshot points to the URL that was created for your image after being published

Simply copy the link and insert it as the IMAGE_URL. Here is the syntax in case you forgot how to create a hyperlink using the formula.

=HYPERLINK(“URL”, IMAGE(“IMAGE_URL”))

Now you’ll see the image is inserted in the cell. Click on it to see the hyperlink which has been created.

The screenshot shows the HYPERLINK formula using your custom image URL inside. The image is visible in the A1 cell and links out to pexels website

We can create a hyperlink to documents such as PDF files in Google sheets. When someone clicks on the hyperlink, the file will be downloaded instantly.

This is another very useful feature in Google sheets when you want to share PDF files in an organized manner.

Step 1: In order to share a PDF, first you need to upload it to Google drive.

Step 2: Then right-click on the PDF file and select the get link option. If you don’t see such an option, go to Share and click on the get link button at the bottom. Make sure you have selected access to ‘Anyone with the link’ instead of the ‘Restricted’ option.

The screenshot shows PDF sharing options settings in your google Drive

Step 3: Now you have the link, it will look like this:

https://drive.google.com/file/d/<file ID>/view

(file ID will be unique to each file)

Step 4: Now you can paste it into the text box in the Insert hyperlink dialog box.

The screenshot shows HYPERLINK formula that links to PDF file

Step 5: When you click on the link it will open the PDF in a new tab

Final Thoughts

Well, now you know how to create, add and edit hyperlinks in Google Sheets.

We covered 4 different ways of creating hyperlinks in your worksheet (which one is your favorite?) and 5 creative ways of using them

I hope this article answered all questions you had about adding links to Google Sheets but if I’ve missed something then please let me know in the comments below!

Leave a Reply

Your email address will not be published. Required fields are marked *