M
Misthaufen
I have some VBA code that runs fine on a PC but fails on the Mac.
I have a column of stock ticker symbols and I want to open a web page
using one of these symbols in the URL:
....
Set Symbol = Worksheets("Symbols").[A1]
URL = "http://www.investorguide.com/cgi-bin/research.cgi?name=" & _
Symbol(i,1)
Workbooks.Open Filename:=URL
....
This works fine in the PC version but in the Mac version the URL that is
passed to the Open contains garbage characters after the symbol name, as
if there is no end of data character.
Can anyone help?
I have a column of stock ticker symbols and I want to open a web page
using one of these symbols in the URL:
....
Set Symbol = Worksheets("Symbols").[A1]
URL = "http://www.investorguide.com/cgi-bin/research.cgi?name=" & _
Symbol(i,1)
Workbooks.Open Filename:=URL
....
This works fine in the PC version but in the Mac version the URL that is
passed to the Open contains garbage characters after the symbol name, as
if there is no end of data character.
Can anyone help?