Is there a function or code available through which I can convert hex in A1 to ASCII in B1? In my case, the hex is expressed as a simple string, e.g., 1234AABBCC55. Thanks.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Converting hex to ASCII
Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Converting hex to ASCII
- This topic has 15 replies, 5 voices, and was last updated 14 years, 8 months ago.
Viewing 13 reply threadsAuthorReplies-
RussB
AskWoody PlusSeptember 14, 2010 at 12:43 pm #1244355Someone may have a formula or macro, or install an add-on like ASAP. This is what I use at work.
-
Tim Sullivan
Member -
WSJimmy-W
AskWoody LoungerSeptember 14, 2010 at 1:31 pm #1244374Thanks, guys. Russ, I installed ASAP, but didn’t see a hex2text utility. Tim, your formula works to a limited extent. For example, if I have hex 6D792062726F776E20646F67 in A1, your formula in B1 returns “my bro.” Ther hex string actually is “my brown dog,” so it’s a matter of length. Perhaps I have to edit the formula for length, but I’m a little challenged by the syntax!
-
Tim Sullivan
MemberSeptember 14, 2010 at 3:05 pm #1244408…. Tim, your formula works to a limited extent. For example, if I have hex 6D792062726F776E20646F67 in A1, your formula in B1 returns “my bro.” Ther hex string actually is “my brown dog,” so it’s a matter of length. Perhaps I have to edit the formula for length, but I’m a little challenged by the syntax!
This should work for 6D792062726F776E20646F67 in Cell A2 … equals “my brown dog”.
Put this in cell B2….
=CONCATENATE((CHAR(HEX2DEC(MID(A2,1,2)))),(CHAR(HEX2DEC(MID(A2,3,2)))),(CHAR(HEX2DEC(MID(A2,5,2)))),(CHAR(HEX2DEC(MID(A2,7,2)))),(CHAR(HEX2DEC(MID(A2,9,2)))),(CHAR(HEX2DEC(MID(A2,11,2)))),(CHAR(HEX2DEC(MID(A2,13,2)))),(CHAR(HEX2DEC(MID(A2,15,2)))),(CHAR(HEX2DEC(MID(A2,17,2)))),(CHAR(HEX2DEC(MID(A2,19,2)))),(CHAR(HEX2DEC(MID(A2,21,2)))),(CHAR(HEX2DEC(MID(A2,23,2)))))
-
-
Paul T
AskWoody MVP -
Tim Sullivan
MemberSeptember 14, 2010 at 2:03 pm #1244382Hi Jimmy – Your original example was 12 characters, so I limited the formula to 12 chars. Paul is correct about being able to modify the formula for longer characters.
You could also try this …. I got it from doing a Google search…..
Function Translate(Str As String) As String
Dim i As Integer
Dim Temp As String
If Left(Str, 2) “X'” Then
Translate = Str
Exit Function
End If
Str = Replace(Str, “X'”, “”)
Str = Left(Str, Len(Str) – 1)
For i = 1 To Len(Str) Step 2
Temp = Temp & Chr(hex2dec(Mid(Str, i, 2)))
Next i
Translate = Temp
End FunctionTo use it you probably need to install the Add-In Analysis ToolPak – VBA and set a reference to atpvbaen.xls in your workbook project. Once that’s done you can use it in a cell like this:
=Translate(A1)
-
WSJimmy-W
AskWoody LoungerSeptember 14, 2010 at 2:26 pm #1244385Thanks again, Paul. I appreciate your help. First, I extended your formula, but it seems that there’s a limit. Excel presents an error if I go past (CHAR(HEX2DEC(MID(A1,23,2). I get a #Value error if I go to 25. I then installed the Analysis ToolPak – VBA add-in and pasted the code in a new module. I’m not sure what you mean by setting a reference to the atpvbaen.xls file (I see atpvbaen.xlam in the add-in window). I ran the command, but got the error in the attached screen shot, perhaps because I have not proceeded correctly. What I’d like to do is set up ny Personal.xlxb or xls with this function, so that I can use it in any workbook.
-
Tim Sullivan
MemberSeptember 14, 2010 at 2:47 pm #1244390Hi Jimmy – Here is the link with additional info ….
Converting Long HEX string to ASCIIHope that helps
-
WSJimmy-W
AskWoody Lounger -
Paul T
AskWoody MVPSeptember 15, 2010 at 2:15 pm #1244558You need to specify that you are using an Excel function. See this description.
cheers, Paul
-
WSJimmy-W
AskWoody Lounger -
Paul T
AskWoody MVP -
WSJimmy-W
AskWoody LoungerSeptember 16, 2010 at 4:28 pm #1244838 -
WSsdckapr
AskWoody LoungerSeptember 17, 2010 at 5:48 pm #1245386The function presumes that the HEX starts with an X’, Notice the line:
If Left(Str, 2) “X'” Then
Translate = Str
Exit Function
End IfThus if it does NOT start with X’ it just returns the original….
Also note the lines:
Str = Replace(Str, “X'”, “”)
Str = Left(Str, Len(Str)-1)If it starts with X’, it removes this and then removes the final character. If you look at the source of the code that is linked, the user had HEX of the form:
X’5374c3a97068616e65′Also you do not need the “Application.WorksheetFunction”. You need to install the analysis toolpack and then in VB set a reference to atpvbaen.xls to run the function.
Steve
-
WSJimmy-W
AskWoody LoungerSeptember 20, 2010 at 12:03 pm #1245698Thanks very much, Steve. Being guided through the code made everything clear. I found, however, that I still got the “Sub or function not defined” error if I went back to the original code instead of substituting Temp = Temp & Chr(Application.WorksheetFunction.hex2dec(Mid(Str, i, 2))). I had installed the analysis toolpack and set a reference to atpvbaen.xls. Now that I see how I must format my hex column, this is going to make a little extra work. I did try to edit the code to remove the “X” reference, but didn’t have much luck. I found, however, another code that seems to take a hex string without any extraneous characters:
Public Function TextToHex(Text As Range) As String
Dim i As Integer
Dim DummyStr As StringFor i = 1 To Len(Text)
DummyStr = DummyStr & Right(“00” & Hex(Asc(Mid(Text, i, 1))), 2)
DoEvents
Next iTextToHex = DummyStr
End FunctionPublic Function HexToText(Text As Range) As String
Dim i As Integer
Dim DummyStr As StringFor i = 1 To Len(Text) Step 2
DummyStr = DummyStr & Chr(Val(“&H” & (Mid(Text, i, 2))))
DoEvents
Next iHexToText = DummyStr
End Function
Viewing 13 reply threads -

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
-
Microsoft: Troubleshoot problems updating Windows
by
Alex5723
2 hours, 5 minutes ago -
Woman Files for Divorce After ChatGPT “Reads” Husband’s Coffee Cup
by
Alex5723
2 hours, 13 minutes ago -
Moving fwd, Win 11 Pro,, which is best? Lenovo refurb
by
Deo
1 hour ago -
DBOS Advanced Network Analysis
by
Kathy Stevens
12 hours, 3 minutes ago -
Microsoft Edge Launching Automatically?
by
healeyinpa
2 hours, 28 minutes ago -
Google Chrome to block admin-level browser launches for better security
by
Alex5723
14 hours, 43 minutes ago -
iPhone SE2 Stolen Device Protection
by
Rick Corbett
6 hours, 59 minutes ago -
Some advice for managing my wireless internet gateway
by
LHiggins
2 hours, 40 minutes ago -
NO POWER IN KEYBOARD OR MOUSE
by
HE48AEEXX77WEN4Edbtm
8 hours, 55 minutes ago -
A CVE-MITRE-CISA-CNA Extravaganza
by
Nibbled To Death By Ducks
1 day ago -
Sometimes I wonder about these bots
by
Susan Bradley
20 hours, 30 minutes ago -
Does windows update component store “self heal”?
by
Mike Cross
10 hours, 32 minutes ago -
Windows 11 Insider Preview build 27858 released to Canary
by
joep517
1 day, 14 hours ago -
Pwn2Own Berlin 2025: Day One Results
by
Alex5723
1 day, 13 hours ago -
Windows 10 might repeatedly display the BitLocker recovery screen at startup
by
Susan Bradley
1 hour, 47 minutes ago -
Windows 11 Insider Preview Build 22631.5409 (23H2) released to Release Preview
by
joep517
1 day, 16 hours ago -
Windows 10 Build 19045.5912 (22H2) to Release Preview Channel
by
joep517
1 day, 16 hours ago -
Kevin Beaumont on Microsoft Recall
by
Susan Bradley
1 day, 5 hours ago -
The Surface Laptop Studio 2 is no longer being manufactured
by
Alex5723
2 days, 1 hour ago -
0Patch, where to begin
by
cassel23
1 day, 19 hours ago -
CFPB Quietly Kills Rule to Shield Americans From Data Brokers
by
Alex5723
2 days, 14 hours ago -
89 million Steam account details just got leaked,
by
Alex5723
2 days, 2 hours ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
2 days, 23 hours ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
2 days, 14 hours ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
2 days, 1 hour ago -
Installer program can’t read my registry
by
Peobody
18 hours, 5 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
2 days, 11 hours ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
2 days, 19 hours ago -
False error message from eMClient
by
WSSebastian42
3 days, 10 hours ago -
Awoke to a rebooted Mac (crashed?)
by
rebop2020
3 days, 19 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.