Skip to content
Home
Tutorials
Real-World Examples
Open a web page
How to open a web page using VBA
VBA
EXPLANATION
METHOD 1. Open a web page using VBA
VBA
Edit VBA Parameters
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.