Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:  Calculated column
Calculated column  Calculated table
Calculated table  Measure
Measure  Visual calculation
Visual calculation
Returns a bitwise OR of two numbers.
Syntax
BITOR(<number>, <number>)
Parameters
| Term | Definition | 
|---|---|
| Number | Any scalar expression that returns number. If not an integer, it is truncated. | 
Return value
A bitwise OR of two numbers.
Remarks
- This function supports both positive and negative numbers.
Example
The following DAX query:
EVALUATE 
    { BITOR(9, 10) }
Returns 11.