Hi, I'm oversimplifying my example, but here goes. I am trying to map multiple choices from a split form in Bing Maps. I have all of the selections figured out, but have to pass all of the addresses as ONE criteria. I have built a table that has all of the address information. That table is MapAddTbl. It has a field in it called ADDRESS. All good so far.
What I need to do is build a variable, call it MAPVAR that has all of the addresses in the table. Then add a prefix of "http://bing.com/maps/default.aspx?sp=" to it. So essentially if the table contains
1 Main, San Francisco, CA
33 Oak St, Los Angeles, CA
I need the resulting value of the variable to be:
http://bing.com/maps/default.aspx?sp=1 Main, San Francisco, CA~33 Oak St, Los Angeles, CA
From there, I will use the following statement to open a browser, go to bing, and display the sites.
Application.followhyperlink MAPVAR
Everything works fine, but I don't know how to build the one variable.
Any help would be greatly appreciated