Hi,
I want to open a google when i run the vba first time, when i run the vba second time it should display the previosuly opened google page browser(Open already in the first run) instead of open new browser.
I have used the following code to open the google. But dont know how to navigate to already opened browser.

Sub browser()
Dim RetVal

ActiveWorkbook.FollowHyperlink Address:="http://google.com"
End Sub