top of page
Search

How to Create a Button to Follow a Hyperlink in Excel

  • Writer: Joshua Crowder
    Joshua Crowder
  • Nov 5, 2022
  • 2 min read


A button that links to a web page can be a very useful tool. If you periodically go to the same web page while working in a workbook, it may make sense just to create a button to get you to that website.

Locate the Developer Tab First, click on the developer tab. If you don’t have the developer tab in your Excel ribbon, you can figure out how to add it here.


Insert a Button Next, click on the insert a “command button.” This is located in the upper left-hand corner of the active x control section. After the button is selected, drag the cursor with the left mouse button help to trace a square or rectangle. This will dictate how large your button will appear.


Find Button Properties Right-click on the button and select properties.

Properties

Type what you want to display on the button in the caption section. Then, close out the properties window.


Add Code to the Button Double-click on the button so that the visual basic window appears and type the following information in that window with no spaces between lines:

Private Sub CommandButton1_Click() ActiveWorkbook.FollowHyperlink _ Address:=”https://www.roghnu.com End Sub

Note that “CommandButton1” is the name of the object and may be different for you depending on what you name your button. Additionally, you will want to choose the website that you would like to open in the place of http://www.roghnu.com. Click on the save button and save your workbook as a macro-enabled workbook. Exit the visual basic window.


Get out of Design Mode Lastly, save the Excel file and exit the design mode by selecting the design button in the controls section. Each time your button is selected your web browser should automatically open to display the web address that was saved in the button properties.


This content is accurate and true to the best of the author’s knowledge and is not meant to substitute for formal and individualized advice from a qualified professional. © 2019 Joshua Crowder


This article can also be found on Medium & TurboFuture.


 
 
 

Comments


Excel Tutorials

©2022 by Excel Tutorials. Proudly created with Wix.com

bottom of page