
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Xor Logical Operators
Hi ,
I saw Xor in Qlikview help file
Logical exclusive or. The operation returns the logical exclusive or of the operands. I.e. like logical or, but with the difference that the result is false if both operands are true.
Can any one explain this in detail please ...
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Comparison with OR would you clear your concept.
(true OR true) -> true
(true OR false) -> true
(false OR false) -> false
whereas, for XOR
(true XOR true) -> false
(true XOR false) -> true
(false XOR false) -> false
i.e. - ONLY one true is true. (Note: order of true/false would not change the result)
Hope this helps you understand.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
See here: http://erudition.io/tag/qlikview/ for an excellent explaination, with the use of diagrams.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Comparison with OR would you clear your concept.
(true OR true) -> true
(true OR false) -> true
(false OR false) -> false
whereas, for XOR
(true XOR true) -> false
(true XOR false) -> true
(false XOR false) -> false
i.e. - ONLY one true is true. (Note: order of true/false would not change the result)
Hope this helps you understand.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks a lot tresesco for you reply ....
