BITXOR
Applies to: Calculated column Calculated table Measure Visual calculation
Returns a bitwise XOR of two numbers.
DAX
BITXOR(<number>, <number>)
Term | Definition |
---|---|
Number | Any scalar expression that returns number. If not an integer, it is truncated. |
A bitwise XOR of two numbers.
- This function supports both positive and negative numbers.
The following DAX query:
DAX
EVALUATE { BITXOR(9, 10) }
Returns 3.