=BITAND(number1, number2)
=BITAND(12, 7)
This formula performs a bitwise AND operation on the integers 12 (binary 1100) and 7 (binary 0111), resulting in the integer 4 (binary 0100).
=BITAND(25, 15)
This formula performs a bitwise AND operation on the integers 25 (binary 11001) and 15 (binary 01111), resulting in the integer 9 (binary 01001).
The BITAND formula performs a bitwise AND operation on two integers and returns the result as an integer.