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