Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Flags

Hi can any body tell me by giving example why flags arre used in fields

1 Reply
sujeetsingh
Master III
Master III

Mahesh ,

Let ther be a Tabdle Data as

Name   Marks Age

RAM    98        34

SAM    88        23

LIU      45         17

Now let there we want to have  flag to represent the student with underage

Then we can derive a Flag as

LOAD

Name,Marks,Age

,if(Age>=18,1,0) as AdultFlag

Hence flag is the new derived value to check some condition and filter the data accordingly.