Hi!
I have build a Standard Macro with a Dowload Tool inside.
The Dowload Tool get a lot of urls
So I would like:
Either I get valid responses or not. When one response is not valid I want to increase the value of a parameter of the url and put the modify url and make the request again.
pseudo code:
http://myurl.com?myparameter=10;
myvalue= 10;
while (respose is not valid)
myvalue := myvalue + 10;
myurl := http://myurl.com?myparameter=myvalue;
Now I am looking for a soluion with Alteryx.
How It is possible?
I experimented with an Iteration macro, but it does not work for me?
Mathias