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 10/11 clock app
by
Kathy Stevens
32 minutes ago -
Turn off right-click draw
by
Charles Billow
2 hours, 4 minutes ago -
Introducing ChromeOS M137 to The Stable Channel
by
Alex5723
5 hours, 35 minutes ago -
Brian Wilson (The Beach Boys) R.I.P
by
Alex5723
6 hours, 46 minutes ago -
Master patch listing for June 10, 2025
by
Susan Bradley
7 hours, 11 minutes ago -
Suggestions for New All in One Printer and a Photo Printer Windows 10
by
Win7and10
13 hours, 9 minutes ago -
Purchasing New Printer. Uninstall old Printer Software First?
by
Win7and10
13 hours, 13 minutes ago -
KB5060842 Issue (Minor)
by
AC641
17 hours, 46 minutes ago -
EchoLeak : Zero Click M365 Copilot leak sensitive information
by
Alex5723
20 hours, 19 minutes ago -
24H2 may not be offered June updates
by
Susan Bradley
2 hours, 43 minutes ago -
Acronis : Tracking Chaos RAT’s evolution (Windows, Linux)
by
Alex5723
1 day, 8 hours ago -
June 2025 updates are out
by
Susan Bradley
8 hours, 59 minutes ago -
Mozilla shutting Deep Fake Detector
by
Alex5723
1 day, 23 hours ago -
Windows-Maintenance-Tool (.bat)
by
Alex5723
1 day, 9 hours ago -
Windows 11 Insider Preview build 26200.5641 released to DEV
by
joep517
2 days, 2 hours ago -
Windows 11 Insider Preview build 26120.4250 (24H2) released to BETA
by
joep517
2 days, 2 hours ago -
Install Office 365 Outlook classic on new Win11 machine
by
WSrcull999
2 days, 2 hours ago -
win 10 to win 11 with cpu/mb replacement
by
aquatarkus
1 day, 18 hours ago -
re-install Windows Security
by
CWBillow
2 days, 5 hours ago -
WWDC 2025 Recap: All of Apple’s NEW Features in 10 Minutes!
by
Alex5723
2 days, 9 hours ago -
macOS Tahoe 26
by
Alex5723
2 days, 3 hours ago -
Migrating from win10 to win11, instructions coming?
by
astro46
14 hours, 30 minutes ago -
Device Eligibility for Apple 2026 Operating Systems due this Fall
by
PKCano
1 day, 17 hours ago -
Recommended watching : Mountainhead movie
by
Alex5723
1 day, 18 hours ago -
End of support for Windows 10
by
Old enough to know better
1 day, 2 hours ago -
What goes on inside an LLM
by
Michael Covington
1 day, 12 hours ago -
The risk of remote access
by
Susan Bradley
8 hours, 26 minutes ago -
The cruelest month for many Office users
by
Peter Deegan
20 hours, 39 minutes ago -
Tracking protection and trade-offs in Edge
by
Mary Branscombe
1 day, 22 hours ago -
Supreme Court grants DOGE access to confidential Social Security records
by
Alex5723
3 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.