BITXOR is a DAX function that returns a bitwise ‘XOR’ of two numbers.
Syntax
BITXOR(
Number1,
Number2
)
Argument | Properties | Description |
---|---|---|
Number1 | The first number. | |
Number2 | The second number. |
BITXOR is a DAX function that returns a bitwise ‘XOR’ of two numbers.
BITXOR(
Number1,
Number2
)
Argument | Properties | Description |
---|---|---|
Number1 | The first number. | |
Number2 | The second number. |
A bitwise XOR of two numbers.
The following DAX query:
EVALUATE { BITXOR(9, 10) }
Returns 3.
Other functions related to BITXOR are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy