Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dynamic XML Read


Hi.

I have a script that loads xml.

in the from i have a query string [http://........../name=?&id=?]

i want to load into ?'s values from variables in my script..

hotw to?

Labels (1)
1 Solution

Accepted Solutions
Not applicable
Author

Hi Loin, Just create a For Each Next Loop to Load the data from multiple files.

For Each i IN 1,2,3,4,

LOAD *

FROM [http://........../name=?&id=$(i)]

;

Next

View solution in original post

1 Reply
Not applicable
Author

Hi Loin, Just create a For Each Next Loop to Load the data from multiple files.

For Each i IN 1,2,3,4,

LOAD *

FROM [http://........../name=?&id=$(i)]

;

Next