Hi,
Alteryx email tool sends the table with Address and other fields. I used report text tool to create new address field with hyperlink and used it in the table tool. I used below code to dynamically point to correct address in maps when clicked the address field however, the code doesn't work, it denies to open without any error.
Address_Hyperlink:
'<a href="https://www.google.com/maps/search/?api=1&query=' +
Replace(URLEncode([Address]), '+', '%20') +
'">' +
[Address] +
'</a>'
Solved! Go to Solution.
Can you try this:
Hi Warcry,
Thank you for the response. The below code worked for me.
"https://www.google.com/maps/place/" + Replace([Address], " ", "+")
Thanks
Nakul