BITAND

Updated on

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.

Return Values

A bitwise AND of two numbers.

Remarks

  • This function supports both positive and negative numbers.

Example

The following DAX query:

EVALUATE { BITAND(13, 11) }

Returns 9.

Other functions related to BITAND are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/bitand-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy