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