Hi,
I encountered some weird bug in a function conversing a number to a binary value… can anyone tell me what went wrong? I use two functions
– CBin() is the main procedure converting a double value to a binary one by splitting it into powers of two and recombining these as powers of ten into the right binary number (e.g. 9 = 8 + 1 = 2^3 + 2^0 => 10
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Convert number to/from binary (VBA)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » Convert number to/from binary (VBA)
- This topic has 8 replies, 3 voices, and was last updated 21 years, 7 months ago.
AuthorTopicWShasse
AskWoody LoungerOctober 30, 2003 at 1:23 am #395806Viewing 1 reply threadAuthorReplies-
WSHansV
AskWoody LoungerOctober 30, 2003 at 2:01 am #737284Double precision floating point numbers have a precision of 15 significant digits. The difference between 1000000000000000 and 1000000000000001 is in the 16th digit, so it gets lost. You can’t represent numbers over 32,767 as binary in a variable of type Double. You’ll have to use strings.
-
WShasse
AskWoody Lounger -
WSMarkD
AskWoody LoungerOctober 30, 2003 at 10:04 am #737436If interested here is an example of a Decimal-to-Binary function that converts a Long Integer value (max value range -2^31 to 2^31 or -2147483648 to 2147483647) to binary number represented by a string:
Public Function DecToBin(ByVal lngDec As Long) As String
Const MAXLEN = 30
Dim strBin As String
Dim n As LongIf lngDec < 0 Then
strBin = "1"
Else
strBin = "0"
End IfFor n = MAXLEN To 0 Step -1
If lngDec And (2 ^ n) Then
strBin = strBin & "1"
Else
strBin = strBin & "0"
End If
NextDecToBin = strBin
End Function
Sample results:
? DecToBin(32768)
00000000000000001000000000000000
? DecToBin(32769)
00000000000000001000000000000001
? DecToBin(2^31-1)
01111111111111111111111111111111
? DecToBin(2147483647)
01111111111111111111111111111111
? DecToBin(-2^31)
10000000000000000000000000000000
? DecToBin(-2147483648)
10000000000000000000000000000000
? DecToBin(2^31)
' Overflow errorFunction based on example in MSKB Art 109260, How to Convert a Decimal Number to a Binary Number in a String modified somewhat. As noted in article, "This program accepts a nine-digit positive decimal number and returns a 32- character string that represents the number in binary notation. Negative numbers are converted into the 32-digit, twos-complement binary format used by long integers in Basic…. In that format, the left-most binary digit (the thirty-second digit in a long integer) will always be 1 for a negative number and 0 for a positive number."
If you don't want the leading zeroes then you'd need to modify function.
HTH
-
WSMarkD
AskWoody LoungerOctober 30, 2003 at 10:04 am #737437If interested here is an example of a Decimal-to-Binary function that converts a Long Integer value (max value range -2^31 to 2^31 or -2147483648 to 2147483647) to binary number represented by a string:
Public Function DecToBin(ByVal lngDec As Long) As String
Const MAXLEN = 30
Dim strBin As String
Dim n As LongIf lngDec < 0 Then
strBin = "1"
Else
strBin = "0"
End IfFor n = MAXLEN To 0 Step -1
If lngDec And (2 ^ n) Then
strBin = strBin & "1"
Else
strBin = strBin & "0"
End If
NextDecToBin = strBin
End Function
Sample results:
? DecToBin(32768)
00000000000000001000000000000000
? DecToBin(32769)
00000000000000001000000000000001
? DecToBin(2^31-1)
01111111111111111111111111111111
? DecToBin(2147483647)
01111111111111111111111111111111
? DecToBin(-2^31)
10000000000000000000000000000000
? DecToBin(-2147483648)
10000000000000000000000000000000
? DecToBin(2^31)
' Overflow errorFunction based on example in MSKB Art 109260, How to Convert a Decimal Number to a Binary Number in a String modified somewhat. As noted in article, "This program accepts a nine-digit positive decimal number and returns a 32- character string that represents the number in binary notation. Negative numbers are converted into the 32-digit, twos-complement binary format used by long integers in Basic…. In that format, the left-most binary digit (the thirty-second digit in a long integer) will always be 1 for a negative number and 0 for a positive number."
If you don't want the leading zeroes then you'd need to modify function.
HTH
-
-
WShasse
AskWoody Lounger
-
-
WSHansV
AskWoody LoungerOctober 30, 2003 at 2:01 am #737285Double precision floating point numbers have a precision of 15 significant digits. The difference between 1000000000000000 and 1000000000000001 is in the 16th digit, so it gets lost. You can’t represent numbers over 32,767 as binary in a variable of type Double. You’ll have to use strings.
Viewing 1 reply thread -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Frustrating search behavior with Outlook
by
MrJimPhelps
1 hour, 15 minutes ago -
June 2025 Office non-Security Updates
by
PKCano
4 hours, 28 minutes ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
1 hour, 33 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
4 hours, 24 minutes ago -
How start headers and page numbers on page 3?
by
Davidhs
14 hours, 48 minutes ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
9 hours, 23 minutes ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
23 hours, 29 minutes ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
23 hours, 30 minutes ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
13 hours, 12 minutes ago -
Firefox 139
by
Charlie
5 hours, 47 minutes ago -
Who knows what?
by
Will Fastie
19 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
1 day ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
18 hours, 37 minutes ago -
Misbehaving devices
by
Susan Bradley
1 day, 2 hours ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
2 days, 6 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
3 hours, 31 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
2 days, 4 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
1 day, 3 hours ago -
Edge Seems To Be Gaining Weight
by
bbearren
1 day, 19 hours ago -
Rufus is available from the MSFT Store
by
PL1
2 days, 3 hours ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
3 days, 5 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
1 day, 5 hours ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
1 day, 4 hours ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
3 days, 1 hour ago -
Office gets current release
by
Susan Bradley
3 days, 4 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
4 days, 18 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
4 days, 2 hours ago -
Stop the OneDrive defaults
by
CWBillow
4 days, 19 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
5 days, 5 hours ago -
X Suspends Encrypted DMs
by
Alex5723
5 days, 7 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.