BITLSHIFT(number, shift_amount)
=BITLSHIFT(5, 2)
This formula performs a bitwise left shift operation on the integer 5 (binary 0101), shifting its bits 2 positions to the left, resulting in the integer 20 (binary 10100).
=BITLSHIFT(12, 3)
This formula performs a bitwise left shift operation on the integer 12 (binary 1100), shifting its bits 3 positions to the left, resulting in the integer 96 (binary 1100000).
The BITLSHIFT formula performs a bitwise left shift operation on an integer, shifting its bits a specified number of positions to the left and returning the result as an integer.