Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Address field to have hyperlink to view in maps

NakulMalisetty
7 - Meteor

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>'

2 REPLIES 2
Warcry
9 - Comet

Can you try this: 

'<a href="https://www.google.com/maps/search/?api=1&query=' + Replace(URLEncode([Address]), '+', '%20') + '" target="_blank">' + [Address] +
 
NakulMalisetty
7 - Meteor

Hi Warcry, 

 

Thank you for the response. The below code worked for me.

 

"https://www.google.com/maps/place/" + Replace([Address], " ", "+")

 

Thanks

Nakul

Labels
Top Solution Authors