Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7565607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:11:53+00:00 2026-05-30T14:11:53+00:00

How can I extract the bits from a Single variable in vba? For example,

  • 0

How can I extract the bits from a Single variable in vba?

For example, I want to extract bits 23 to 30 and place them into the lowest 8 bits of an integer.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T14:11:54+00:00Added an answer on May 30, 2026 at 2:11 pm

    For transferring the bit settings of the short variable to an int, the fastest solution is a ‘quick and dirty’ CopyMemory approach, as seen here.

    Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal Bytes As Long)
    
    Public Sub DoubleToIEEE32(ByVal dValue As Double, ByRef nI1 As Integer, ByRef nI2 As Integer)
      Dim fValue As Single
      Dim nInt(1) As Integer
    
      fValue = CSng(dValue)
      CopyMemory nInt(0), fValue, Len(fValue) ‘ copy from Single to Int Array
    
      ‘ Internally, the Low Word is word 1 and High Word is word 2.
      ‘ Swap them to make it like the PLC guys do it.
      nI1 = nInt(1)
      nI2 = nInt(0)
    End Sub
    

    For reading and writing single bits in integers, see here. The relevant source code is this:

    ' The ClearBit Sub clears the nth bit (Bit%) 
    ' of an integer (Byte%).
    Sub ClearBit (Byte%, Bit%)
       ' Create a bitmask with the 2 to the nth power bit set:
       Mask% = 2 ^ Bit%
       ' Clear the nth Bit:
       Byte% = Byte% And Not Mask%
    End Sub
    
    ' The ExamineBit function will return True or False depending on
    ' the value of the nth bit (Bit%) of an integer (Byte%).
    Function ExamineBit% (Byte%, Bit%)
       ' Create a bitmask with the 2 to the nth power bit set:
       Mask% = 2 ^ Bit%
       ' Return the truth state of the 2 to the nth power bit:
       ExamineBit% = ((Byte% And Mask%) > 0)
    End Function
    
    ' The SetBit Sub will set the nth bit (Bit%) of an integer (Byte%).
    Sub SetBit (Byte%, Bit%)
       ' Create a bitmask with the 2 to the nth power bit set:
       Mask% = 2 ^ Bit%
       ' Set the nth Bit:
       Byte% = Byte% Or Mask%
    End Sub
    
    ' The ToggleBit Sub will change the state of the 
    ' nth bit (Bit%) of an integer (Byte%).
    Sub ToggleBit (Byte%, Bit%)
       ' Create a bitmask with the 2 to the nth power bit set:
       Mask% = 2 ^ Bit%
       ' Toggle the nth Bit:
       Byte% = Byte% Xor Mask%
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to make a program that can extract the data from a removable
I want to extract bits of a decimal number. For example, 7 is binary
I am wondering how I can extract the title variable from my forms posted
I mean a tool that can extract certain contents from old .NET 1.1 WinForm
Does anyone know of a way i can extract all jpg images from a
I have some path c:\server\folderName1\another name\something\another folder\ . How i can extract from there
How can I extract the part of this stream (the one named BLABLABLA) from
How can I extract 456 from xxx_456 where xxx is of indefinite length?
I can extract Fixed effects from the nlme summary using summary(fm1) . But struggling
I need a library that can extract text from handwritten paper once I scan

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.