Here is my Text Input data
url | api_key | start_date | end_date | id |
https://api.xxxxx?auth=xxxxx&start=xxxxx&end=xxxxx&id=xxxxx | xxxxx | xxxxx | xxxxx | xxxxx |
I used interface tools to replace value in Tableau Web Data Connector. However, the url contains api_key, start_date, end_date, and id, so I always get the same result.
Does anyone know how to approach this?
Thank you,
Kazumi
Solved! Go to Solution.
Hi @knozawa,
You need to use a formula tool after the text input to construct the URL from the fields that you have changed.
Kane
Hi KaneG,
Thank you for your reply.
I used a formula tool after the text input. However, I still have an error message "Type mismatch in operator +".
My formula is like this:
Would you know how to approach this issue?
Thank you,
Kazumi
[id] was int64, so I changed formula to following:
It works now!
Thank you.
Kazumi
could you save here or share me file with this Alteeryx function because I'm looking solutions to change automatically start dade and end date in a few URL in the same time.
could you share me workflow in alteryx to change this part of URL.
I have really basic knowledge so I need more your help
Hi @awojciechowski,
Here is an example of dynamically changing those dates in the address:
The text input holds the 4 variables that are included in the api address. The formula tool constructs the address according to these variables with the following formula:
Thanks for help, It works very good :)