I am trying to figure out a way to navigate to Chrome in Vba
This works but i am unsur why I needs to be declared as a variable.
Additionally, if the cell I is refrencing is empty then it will not open it is there and way to open and navigate to a page without having it refrence the workbook
Sub multiplechrome()
Dim WebUrl As String
Dim i As Integer
For i = 1 To ActiveSheet.Cells(1, 2).Value
WebUrl = "http://" & Cells(i, 1).Value & """"
Shell ("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe -url " & WebUrl)
Next
End Sub