LOW
Action
Retrieves the least significant byte of a variable.

Syntax
var = LOW( s )

Remarks

var The variable that is assigned with the LSB of var S.
s The source variable to get the LSB from.
See also
HIGH LOWW HIGHW


Example


Dim I As Integer , Z As Byte
I = &H1001
Z = Low(I) ' is 1