Open a web page

How to open a web page using VBA

METHOD 1. Open a web page using VBA

VBA

Sub Open_Web_page()
'open the Exceldome web page
ActiveWorkbook.FollowHyperlink Address:="https://www.exceldome.com/", NewWindow:=True

End Sub

Explanation about how to open a web page

EXPLANATION

EXPLANATION
This tutorial explains and provides step by step instructions on how to open a web page using VBA by referencing the web page's URL.