Skip to main content
hic
Former Employee
Former Employee

Iterations – or loops – are constructions where a set of statements are executed zero or more times, until some condition is met. They are very common in all programming languages, and QlikView scripting is no exception.

First of all, the Load statement is in itself a loop: For each record in the input table, the field values are read and appended to the output table. The record number is the loop counter, and once the record is read, the loop counter is increased by one and the next record is read. Hence – a loop.

But there are cases where you want to create other types of iterations – in addition to the Load statement.

Files.pngFor - Next Loops

Often you want a loop outside the Load statement. In other words; you enclose normal script statements with a control statement e.g. a "For…Next" to create a loop. An enclosed Load will then be executed several times, once for each value of the loop counter or until the exit condition is met.

The most common case is that you have several files with the same structure, e.g. log files, and you want to load all of them:

   For each vFileName in Filelist ('C:\Path\*.txt')
      Load *,
         '$(vFileName)' as FileName
      From [$(vFileName)];
   Next vFileName

Files Table.pngAnother common case is that you already have loaded a separate table listing the files you want to load. Then you need to loop over the rows in this table, fetch the file name using the Peek() function, and load the listed file:

   For vFileNo = 1 to NoOfRows('FileListTable')
      Let vFileName = Peek('FileName',vFileNo-1,'FileListTable');
      Load *,
         '$(vFileName)' as FileName
      From [$(vFileName)];
   Next vFileNo

Looping over the same record

You can also have iterations inside the Load statement. I.e. during the execution of a Load statement the same input record is read several times. This will result in an output table that potentially has more records than the input table. There are two ways to do this: Either by using a While clause or by calling the Subfield() function.

One common situation is that you have a table with intervals and you want to generate all values between the beginning and the end of the interval. Then you would use a While clause where you can set a condition using the loop counter IterNo() to define the number of values to generate, i.e. how many times this record should be loaded:

   Dates:
   Load
      IntervalID,
      Date( FromDate + IterNo() - 1 ) as Date
      Resident Intervals
      While IterNo() <= ToDate - FromDate + 1 ;

Intervals with Arrows.png

Another common situation is that you have a list of values within one single field. This is a fairly common case when e.g. tags or skills are stored, since it then isn’t clear how many tags or skills one object can have. In such a situation you would want to break up the skill list into separate records using the Subfield() function. This function is, when its third parameter is omitted, an implicit loop: The Load will read the entire record once per value in the list.

   [Individual Skills]:
   Load
      [Employee No],
      SubField(Skills, ',') as Skill
      Resident Employees;

Skills w Arrows.png

Bottom line: Iterations are powerful tools that can help you create a good data model. Use them.

HIC

49 Comments
Not applicable

Thx I migth use the scanfolder function.  Though I dont think your example helps me here?

Sorry, I did only count the "For" with the explicit Each after.

"The file name returned by the 3rd For-Each will be used several times by the 4th For-Each. Or?"

Well, yes and no I think. Its the same folder and the same files.

Perhaps I made it more advanced than I need:

The scope is that before this, I have a load statement with a field (which is restricted by a where clause), which gives me a list of numbers.

I need to loop (and store to qvd) only the files in the folder that ends with these numbers, so only where there is a match. The filenames consist of text and numbers. The numbers can be 1, 2 or 3 digits. That is where the $(vNo) is original peeked from, to get this list of numbers. In front of it is the text in the files: $(vTextFile).

So if the list of numbers from a loaded file is like 77, 88 an 99 and my file names in the folder I want to loop from is like:

Filename88.txt,

Filename99.txt,

Filename2.txt,

Samplename88.txt,

Samplename55.txt

- then when I store them into QVD I get:

Filename88.qvd,

Filename99.txt,

Samplename88.txt.

That is the result I need and so it works - kind of.

Because of the 3rd For-Each (vFile), it load files with "Filename" 3 times and "Samplename" 2 times.

Then the 4th For-Each will load only the ones I need, (or that is what I think it does... ). In the script execution process it looks like it is just overwriting (same name), but I checked the Qvd, I do end up with the correct one.

So sorry for my first Question/formulation, since it actually does what I ask it too.

This means that first I load all the files, to get the few I need, which seems a little stupid, but I could not make it with a simple where clause.

There must be a better way?

0 Likes
1,503 Views
atafsson
Creator
Creator

Really good post (as always hic‌)

One function I miss though is the FieldValueList(). I find it very helpful when having a loaded table with values I want to use in the loop. This way I don't need the peek() function to find a specific value for each iteration, the FieldValueList() function makes that for me.

For example I've used it for first loading a system table from a SQL database, filtering out the views from a Data Warehouse. Then use the table name like this:

TableNames_tmp:

Load TableName

From SQL_sytemtable

Where "filter for finding the needed views";

For each vTableName in FialdValueList('TableName')

$(vTableName😞

Load *

From SQL_Servername.$(vTableName)

;

Store $(vTableName) into ...\$(vTableName).qvd;

The function has pretty bad documentation but works really good when looping over values from a previous load table in Qlik.

hic‌ is there a reason for the lack of documentation and is it not "recommended" to use this function?

Thanks

0 Likes
1,503 Views
beck_bakytbek
Master
Master

super!

thanks a lot

0 Likes
1,503 Views
Chanty4u
MVP
MVP

Hi HIC,

Henric Cronström

I have same issue      but with different  files in same format  how can i achieve this?

i need to get  with the same files into one table?

RE: Keepchar

0 Likes
1,503 Views
berryandcherry6
Creator II
Creator II

HI Henric,

For my latest requirement, i need to build my data model, in such a way that, it should contain a table(Virtual or master table) which contains data from multiple table  and get some counts or sum of filtered rows from table and dump into this master or virtual table.

I have posted here

Check this link: creating Virtual Table in load script in qlik

My Using Tables, currently consists of following columns.

CourseCompletion Table

course_completion_id,course_id,user_id,is_new_user,certificate_id,certificate_access_log_id,batch_meta_data_idinvitation_idlender_offer_idpercentage_scorefinal_test_statustest_attempt_countcourse_completedfinal_test_appeared_datedate_completeddate_createdsurvey_completedis_feedback_completed

Signup table

signup_activity_log_id,invitation_id,client_id,user_id,batch_meta_data_id,rc_activation_code,referrer_email_type_iduser_signeduser_agentreferrerdate_accesseddate_signedip_addresslanding_page_accessed

Invitation Table

invitation_id,user_id,client_id,batch_meta_data_id,first_name,last_name,email,custom_field_1,custom_field_2custom_field_3Street1Street2cityzip_codetelephoneStateclient_unique_idrc_activation_codeshorter_activation_coderc_activation_linkactivateddate_activateddate_createdcreated_bycampaign_idlanguage_id

Things i need to know:

1.) As you can see in course completion table, there it only consists of batch_meta_data_id, for this while building virtual table i need to identify its client in looping to which it belongs, how to do this?

2.)Using loop technique, i only find looping of single tables, how could i loop througn multiple tables data, and dump into virtual table. How should i approch this?

3.)Through looping i need to get count or sum of filtered datas, how to get sum or count of those?

Could you provide some outline code for this, as i found only single table data looping every where. How should i approach to get required table to achieve requirement. Please help me on this.

comments on this is highly appreciated

0 Likes
1,503 Views
paulyeo11
Master
Master

Hi All

I am direct to this blog.

May i know how to make use of Loop command and load 100 raw data set ?

And i know this provide me the right solution. The issue is i don't know how to start. Hope some one can give me kick start. As i see so many expert is here all know.

Paul

0 Likes
1,503 Views
svinnakota
Creator
Creator

Hi Henric,

Thanks for the post. I have question with respective to the performance of looping and individual sections code. In my script i am having the separate section for 10 tables and the code is almost similar in each section with additional deriving columns with respect to the table.

So if i want to implement the same code in the for loop to avoid code redundancy, i need to keep additional if conditions in the for loop for each table. Can you please suggest me which is faster in loading data, is it individual sheet code or is it the for loop?. The data will be like 10 lakh records in each table.

Thanks in advance.

Regards,

Santosh

0 Likes
1,527 Views
hic
Former Employee
Former Employee

There really shouldn't be a ny significant difference in script execution time. Since the tables are large, the execution time of the additional IF statements is negligeble.

HIC

PS I had to google "lakh". Did not know what it was 🙂

0 Likes
1,527 Views
svinnakota
Creator
Creator

Sorry for the trouble. can you please suggest me what is the better way for writing the code in loading hundred thousand records without code redundancy. And if the data is small then, is looping faster than individual script??

Regards,

Santosh

0 Likes
1,527 Views
hic
Former Employee
Former Employee

As I said, there should be no significant difference in execution time when you compare a loop with repeated code. So to avoid code redundancy, I would use a loop or a subroutine.

HIC

0 Likes
1,527 Views