Ayuda de LibreOffice 25.2
Returns a bitwise logical "and" of the parameters.
BITAND(númberu1; númberu2)
Númberu1 y númberu2 son enteros positivos menores que 2 ^ 48 (281 474 976 710 656).
=BITAND(6;10) devuelve 2 (0110 & 1010 = 0010).
Mueve un númberu a la izquierda n bits.
BITLSHIFT(númberu; mayús)
Númberu ye un enteru positivu menor que 2 ^ 48 (281 474 976 710 656).
Shift is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift).
=DESPESQBIT(6;1) devuelve 12 (0110 << 1 = 1100).
Returns a bitwise logical "or" of the parameters.
BITOR(númberu1; númberu2)
Númberu1 y númberu2 son enteros positivos menores que 2 ^ 48 (281 474 976 710 656).
=IBIT(6;10) devuelve 14 (0110 | 1010 = 1110).
Mueve un númberu a la drecha n bits.
BITRSHIFT(númberu; mayús)
Númberu ye un enteru positivu menor que 2 ^ 48 (281 474 976 710 656).
Shift is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift).
=DESPDREBIT(6;1) devuelve 3 (0110 >> 1 = 0011).
Returns a bitwise logical "exclusive or" of the parameters.
BITXOR(númberu1; númberu2)
Númberu1 y númberu2 son enteros positivos menores que 2 ^ 48 (281 474 976 710 656).
=OEXBIT(6;10) devuelve 12 (0110 ^ 1010 = 1100)