Launch Internet Explorer from VBA
If you need custom code to launch a website from VBA, try this.
1. Put the following code in a module
Sub LaunchSite()
Dim Newsite As Object
Set NewSite = CreateObject("InternetExplorer.application")
NewSite.Visible = True
NewSite.Navigate "http://www.automateexcel.com"
End Sub
Can't get the tutorial to work for you? Need help with your code?
Get answers right away at our AE Excel Support Forums!
Get answers right away at our AE Excel Support Forums!



I’ve been studying this sort of information out for a class.
Thanks! This is very informative.
(just thought I’d say hi 4+ years after you posted this)
Works just fine
Is there a way to launch ie run as admin from VBA?