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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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?

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