

Partner - Creator II
2016-11-18
10:10 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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")
9,426 Views
2 Replies

Partner - Specialist II
2016-11-18
11:00 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!


Partner - Creator II
2016-11-18
10:20 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks
9,136 Views
