excel vba test if specific bits set in byte

'Fast VBA function to test if specific bits are set 
'within a Byte. If ALL specified bits are set then this function
'returns True. If ANY of the specified bits are not set then
'this function returns False.

'Bits are numbered from 0 to 7, so the first (least significant) bit
'is bit 0.

'Note: bits can be specified in any order.


Function ByteBitsAreSet(theByte As Byte, ParamArray bits()) As Boolean
    Static i&, b() As Byte
    If UBound(bits) = -1 Then Exit Function
    If (Not Not b) = 0 Then
        ReDim b(0 To 7)
        For i = 0 To 7
            b(i) = 2 ^ i
        Next
    End If
    For i = 0 To UBound(bits)
        If bits(i) < 0 Then Exit Function
        If bits(i) > 7 Then Exit Function
        If (theByte And b(Int(bits(i)))) = 0 Then Exit Function
    Next
    ByteBitsAreSet = True
End Function


'--------------------------------------------------------------------------
MsgBox ByteBitsAreSet(255, 7)           '<--displays: True   255 = 11111111
MsgBox ByteBitsAreSet(230, 0)           '<--displays: False  230 = 11100110
MsgBox ByteBitsAreSet(85, 0, 2, 6, 4)   '<--displays: True    85 = 01010101
MsgBox ByteBitsAreSet(85, 0, 2, 5, 4)   '<--displays: False   85 = 01010101
'
'
'



Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
vba check if specific bits set in longlong vba check if particular bits are set in longlong vba test if particular bits set in longlong integer xlvba check if specific bits are set in int32 excel vba check if specific bits are set in int32 vba check if specific bits are set in int32 vba test if specific bits are set in int32 vba test if specific bits are set in 32-bit long integer excel vba are bits set in long excel vba check if particular bits are set in integer xlvba check if specific bits set in integer xl vba check if specific bits set in integer excelvba check if specific bits set in integer excel vba check if specific bits set in integer xlvba check if specific bits are set in integer xl vba check if specific bits are set in integer excelvba check if specific bits are set in integer excel vba check if specific bits are set in integer vba check if specific bits are set in integer xlvba test if specific bits are set in integer xl vba test if specific bits are set in integer excelvba test if specific bits are set in integer excel vba test if specific bits are set in integer vba test if specific bits are set in integer xlvba test if specific bits set in integer vba test if specific bits set in integer vba are bits set in integer excel vba are bits set in integer xl Check if bits are SET in vba excel Check if bits are SET in vba Check if bits are SET in vba xlvba test if specific bits are set in byte xl vba test if specific bits are set in byte excelvba test if specific bits are set in byte excel vba test if specific bits are set in byte vba test if specific bits are set in byte xlvba test if specific bits set in byte xl vba test if specific bits set in byte excelvba test if specific bits set in byte excel vba test if specific bits set in byte vba test if specific bits set in byte xlvba check if specific bits set in byte xl vba check if specific bits set in byte excelvba check if specific bits set in byte excel vba check if specific bits set in byte vba check if specific bits set in byte vba specific bits set in byte xl vba are specific bits set in byte excel vba are specific bits set in byte excelvba are bits set in byte excel vba are bits set in byte
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source