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

Use data from one loop into another loop

Hi All,

In step 1 Using For...Next loop I get a set of one column data (internet addresses) which, in step 2,  I'd like to use as sources for another loop to get data from there

Step 1

For i=0 To 3

LET C = 'Internet_file_part_1' & $(i) & 'Internet_file_part_2 (fix, utf8)';

Load Data

From $(C);

Next

Step 2 - ?

Any idea appreciated.

Kind regards,

Przemek

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Use NoOfRows() and peek() functions to walk through the loaded table in the second loop.

Rob

View solution in original post

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Use NoOfRows() and peek() functions to walk through the loaded table in the second loop.

Rob