Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
d_koti24
Creator II
Creator II

Do While

Hi all,

What is the exact functionality of do while ?can any one explain me brefiely?

Regards,

kd

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

A do ... loop is an iteration that repeats n times a Group of instructions:

Set a=1;

Do while a<10

Load * from file$(a).csv;

Let a=a+1;

Loop

hope this heklps

Anonymous
Not applicable

hi Koti,

As  Alessandro explained do while with example

Do while

It means do the given work while condition is true .

So until a<10 it will do the given instruction .

Thanks

BKC