Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
DipeshVadgama
Partner - Creator II
Partner - Creator II

IF Or / And Function

How can we use IF OR / And Function in Qlik Sense.

Eg.

IF(Or(10<0,20>10),"True","False")

IF(And(10=10,20>10),"True","False")

2 Replies
Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

Hi,

If(10<0 or 20>10, 'True', 'False')

If(10=20 and 20>10, 'True', 'False')

Aurélien

Help users find answers! Don't forget to mark a solution that worked for you!
DipeshVadgama
Partner - Creator II
Partner - Creator II
Author

Thanks