Login to a Website using a Macro

Add to Favorites
Author:

Connect and login to a website using a macro in Excel.

This allows you to open a website and automatically login without having to do anything yourself; just run the VBA macro code from Excel.

Sections:

The Macro

Use the Macro

Notes

The Macro

Sub ExcelWebsiteLogin()
'TeachExcel.com macro to login to a website.

Dim ie      As Object
Dim frm     As Variant
Dim element As Variant


'Requires Microsoft Internet Controls to be activated. Tools > References > Microsoft Internet Controls
Set ie = New InternetExplorerMedium

'website page where the login form is located
ie.navigate "https://www.teachexcel.com/"

While ie.readyState <> 4: DoEvents: Wend

'ID of the login form
Set frm = ie.document.getElementById("login_form")

'Name of the form, if there is no ID for it.
If frm Is Nothing Then Set frm = ie.document.getElementsByName("login_form").Item(0)


If frm Is Nothing Then
   'Form not found.
   
   'Error message if the form was not found
   MsgBox "Login form not found."
   
   'Kill the internet explorer instance
   ie.Quit
   Set ie = Nothing

Else
   'Form found, proceed to fill it out and then submit it.
   
   'Display the browser
   ie.Visible = True

   'Go through elements in the browser
   For Each element In frm.elements
   
      On Error Resume Next
      
      'Input values into the form fields in the browser
      Select Case element.Name
         'username
         Case "email": element.Value = "email@gmail.com"
         'password
         Case "password": element.Value = "password"
      End Select
      
   Next

   'submit the form
   frm.submit

End If

End Sub

Use the Macro

Where to Install: Module

Enable Microsoft Internet Controls

This macro requires Microsoft Internet Controls to be enabled.

In the VBA Editor window (Alt+F11) go to Tools > References > Check next to Microsoft Internet Controls and hit OK.

Website to Visit

ie.navigate "https://www.teachexcel.com/"

Change https://www.teachexcel.com/ to the desired website.

Username and Password

'username
Case "email": element.Value = "email@gmail.com"
'password 
Case "password": element.Value = "password"

Change email@gmail.com to the correct username or email address for login.

Change password to the correct password to login.

In this example, the username and password are hard-coded into the macro. You can replace this with any number of methods to get the values. You could use a pop-up window to get the values, get values from the spreadsheet, or any number of other ways.

Notes

It is NOT advisable to store passwords anywhere where somenoe else can see them or access them and the last thing you want is to store a password in an Excel workbook and forget that it is there and then send it out to someone who shouldn't have it.

The password and username in this example are just for show and will not actually log you into any website.

You can store a password in a macro and then password protect that macro, here is a tutorial on that from us: Password Protect Excel VBA Macros. However, you should not consider this method secure if you send your workbook to another computer because there are methods for getting the data from a secured macro.






Excel VBA Course
Excel VBA Course - From Beginner to Expert

200+ Video Lessons 50+ Hours of Instruction 200+ Excel Guides

Become a master of VBA and Macros in Excel and learn how to automate all of your tasks in Excel with this online course. (No VBA experience required.)

View Course

Similar Content on TeachExcel
Put Data into a Worksheet using a Macro in Excel
Tutorial: How to input data into cells in a worksheet from a macro. Once you have data in your macro...
Activate or Navigate to a Worksheet using Macros VBA in Excel
Tutorial: Make a particular worksheet visible using a macro in Excel. This is called activating a wo...
Pass Values from One Macro to Another Macro
Tutorial: How to pass variables and values to macros. This allows you to get a result from one macr...
Use Macros with UserForms
Tutorial: This tutorial explains how macros interact with UserForms. This includes an explanation of...
Automatically Run a Macro so Many Seconds, Minutes, or Hours After an Excel Workbook has been Opened
Macro: Run a macro after a certain amount of time has passed since the Excel workbook was ope...
Automatically Lock Certain Cells in Excel using a Macro
Tutorial: This macro allows you to have a cell automatically locked after a user enters something in...


How to Install the Macro
  1. Select and copy the text from within the grey box above.

  2. Open the Microsoft Excel file in which you would like the Macro to function.

  3. Press "Alt + F11" - This will open the Visual Basic Editor - Works for all Excel Versions.  Or For other ways to get there, Click Here.

  4. On the new window that opens up, go to the left side where the vertical pane is located. Locate your Excel file; it will be called VBAProject (YOUR FILE'S NAME HERE) and click this.

  5. If the Macro goes in a Module, Click Here, otherwise continue to Step 8.

  6. If the Macro goes in the Workbook or ThisWorkbook, Click Here, otherwise continue to Step 8.

  7. If the Macro goes in the Worksheet Code, Click Here, otherwise continue to Step 8.

  8. Close the Microsoft Visual Basic Editor window and save the Excel file. When you close the Visual Basic Editor window, the regular Excel window will not close.

  9. You are now ready to run the macro.

Tutorial Details
Similar Content
Put Data into a Worksheet using a Macro in Excel
Tutorial: How to input data into cells in a worksheet from a macro. Once you have data in your macro...
Activate or Navigate to a Worksheet using Macros VBA in Excel
Tutorial: Make a particular worksheet visible using a macro in Excel. This is called activating a wo...
Pass Values from One Macro to Another Macro
Tutorial: How to pass variables and values to macros. This allows you to get a result from one macr...
Excel VBA Course
Excel VBA Course - From Beginner to Expert

200+ Video Lessons
50+ Hours of Video
200+ Excel Guides

Become a master of VBA and Macros in Excel and learn how to automate all of your tasks in Excel with this online course. (No VBA experience required.)

View Course