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

Dynamically read value from a table and update the URL in the other table.

harsha384
8 - Asteroid

Hi All,

 

I had a query regarding updating URLs. The URL has multiple IDs and I want the ID to be taken from a reference table and replace the ID in URL such that i get multiple URLs with distinct ID.

 

For example:

URL:

https://api.trello.com/1/boards/ID?fields=name,url&key=a18abc08254680a5912e208a1418e6ac&cards=all

 

I want the 'ID' to be replaced from reference table.

Note that there are multiple IDs and I need to multiple URL at the out put.

 

Please find your attachment and help me resolve this issue.

 

Thanks

Harsh

1 REPLY 1
Kenda
16 - Nebula
16 - Nebula

Hey @harsha384! If the outside URL will always be the same, simply input your list of IDs and add a Formula with the following expression:

 

"https://api.trello.com/1/boards/" + [IDs] + "?fields=name,url&key=a18abc08254680a5912e208a1418e6ac&cards=all"

This should create the list of URLs you are looking for. Hope this helps!

Labels
Top Solution Authors