excel vba check if bit set in 64-bit longlong integer code example
Example 1: vba long integer value to bits
Function LongToBits$(ByVal n&)
Dim i&
LongToBits = "00000000000000000000000000000000"
If n And &H80000000 Then
Mid$(LongToBits, 1, 1) = "1"
n = n And Not &H80000000
End If
For i = 32 To 2 Step -1
If n And 1 Then Mid$(LongToBits, i, 1) = "1"
n = n \ 2
Next
End Function
MsgBox LongToBits(0)
MsgBox LongToBits(293781237)
MsgBox LongToBits(-1)
Example 2: xl vba is specific bit set in longlong integer
Function LongLongBitIsSet(theLongLong^, bit As Byte) As Boolean
Static i&, b^()
If (Not Not b) = 0 Then
ReDim b(0 To 62)
For i = 0 To 62
b(i) = 2 ^ i
Next
End If
If bit < 63 Then LongLongBitIsSet = theLongLong And b(bit)
End Function
MsgBox LongBitIsSet(255, 7)
MsgBox LongBitIsSet(230, 0)
MsgBox LongBitIsSet(16384, 14)
MsgBox LongBitIsSet(-16383, 0)
MsgBox LongBitIsSet(&H7FFFFFFF, 0), 0)
MsgBox LongLongBitIsSet(&H7FFFFFFFFFFFFFff^, 62)