Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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