I have a access db that has a Map address button on my forum. That when I hit it, it will map the address from the forum I have. Think I did something wrong. See below:
Forum boxes names,
Address_Line_1
City
StateProvince
ZIPPostal
ex address.
19738 Germantown Rd
Germantown, MD 20874
If I type this into my web browser it does work but dunno why my code does not.
Here the code but its not working right.
HELP!!!!
Forum boxes names,
Address_Line_1
City
StateProvince
ZIPPostal
ex address.
19738 Germantown Rd
Germantown, MD 20874
If I type this into my web browser it does work but dunno why my code does not.
Code:
https://www.google.com/maps/place/19738 Germantown Rd,+Germantown,+MD,+20874/
Here the code but its not working right.
Code:
Application.FollowHyperlink "https://www.google.com/maps/place/" & [Me.Address_Line_1] & ",+" & [Me.City] & ",+" & [Me.StateProvince] & ",+" & [Me.ZIPPostal] & "/"
HELP!!!!