Number.BitwiseShiftLeft

 

This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.

Returns the result of a bitwise shift left operation on the operands.

Number.BitwiseShiftLeft(x as number, y as number) as number  

ArgumentDescription
xThe number to shift.
yThe number of bits to shift.
  • If y > 0, the high-order bits shifted off are lost, and the low-order bits are filled with zeros.

  • If y < 0, the low-order bits shifted off are lost, and the high-order bits are filled with zeros.

Show: