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
-
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
1 hour, 1 minute ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
1 hour, 3 minutes ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
1 hour ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
1 hour, 52 minutes ago -
re-install Windows Security
by
CWBillow
4 hours, 17 minutes ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
7 hours, 58 minutes ago -
macOS Tahoe 26
by
Alex5723
2 hours, 11 minutes ago -
Migrating from win10 to win11, instructions coming?
by
astro46
9 hours, 10 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
8 hours, 45 minutes ago -
Recommended watching : Mountainhead movie
by
Alex5723
21 hours, 30 minutes ago -
End of support for Windows 10
by
Old enough to know better
6 hours, 52 minutes ago -
What goes on inside an LLM
by
Michael Covington
5 hours, 56 minutes ago -
The risk of remote access
by
Susan Bradley
34 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
18 hours, 9 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
23 hours, 44 minutes ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
1 day, 6 hours ago -
EaseUS Partition Master free 19.6
by
Alex5723
6 hours, 59 minutes ago -
Microsoft : Edge is better than Chrome
by
Alex5723
1 day, 19 hours ago -
The EU launched DNS4EU
by
Alex5723
2 days, 8 hours ago -
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
1 day, 22 hours ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
2 days, 13 hours ago -
Set default size for pasted photo to word
by
Cyn
2 days, 19 hours ago -
Dedoimedo tries 24H2…
by
Cybertooth
2 days, 7 hours ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
3 days, 18 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 11 hours ago -
Small desktops
by
Susan Bradley
12 hours, 17 minutes ago -
Totally disable Bitlocker
by
CWBillow
2 days, 12 hours ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
3 days, 16 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
4 days, 22 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
2 days, 17 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.