Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 ...
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.
See here: http://erudition.io/tag/qlikview/ for an excellent explaination, with the use of diagrams.
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.
Thanks a lot tresesco for you reply ....