Bitwise XOR in DAX
In T-SQL and other languages we have bitwise XOR natively supported; the T-SQL operator is simply ^. Here's the explanation of bitwise XOR for those not familiar: https://en.wikipedia.org/wiki/Bitwise_operation Why would we want to implement this in DAX? How do we implement it?