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, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
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, 9 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
-
AnduinOS (Windows 11 look alike)
by
Alex5723
18 minutes ago -
Total Commander updates
by
Alex5723
29 minutes ago -
Have you checked your FICO score?
by
Susan Bradley
1 hour, 1 minute ago -
Chrome ‘Scream to Unlock’ : Scream louder to get more time on Social Media
by
Alex5723
2 hours, 25 minutes ago -
Taskbar icon size
by
CWBillow
6 hours, 19 minutes ago -
Is it Local or is it Microsoft Account?
by
RetiredGeek
1 hour, 43 minutes ago -
Does Your State Reveal Who’s Been Hacked?
by
Nibbled To Death By Ducks
21 hours, 55 minutes ago -
A one-year extension to Windows 10 — almost free!
by
Susan Bradley
3 hours, 2 minutes ago -
Windows Configuration Update (KB5062324) – June 2025
by
Alex5723
9 hours, 18 minutes ago -
A federal judge sides with Anthropic in lawsuit over training AI
by
Alex5723
1 day, 2 hours ago -
Name of MS Word Formatting Feature
by
John Baum
15 hours, 35 minutes ago -
InControl Failure?
by
Casey H
13 hours, 58 minutes ago -
Microsoft : Free 1 year support for Windows 10 after EOL
by
Alex5723
15 hours, 40 minutes ago -
MS-DEFCON 3: Businesses must tread carefully
by
Susan Bradley
7 hours, 23 minutes ago -
McLaren Health Care says data breach impacts 743,000 patients
by
Nibbled To Death By Ducks
2 days, 1 hour ago -
WhatsApp banned on House staffers’ devices
by
Alex5723
1 day, 20 hours ago -
Is your device eligible?
by
Susan Bradley
2 days, 4 hours ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
2 days, 10 hours ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
2 days, 11 hours ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
2 days, 12 hours ago -
New Canon Printer Wants Data Sent
by
Win7and10
2 days, 12 hours ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
1 hour, 49 minutes ago -
AI is for everyone
by
Peter Deegan
2 days, 12 hours ago -
Terabyte update 2025
by
Will Fastie
2 days, 6 hours ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
13 hours, 25 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
1 day, 6 hours ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
1 day, 14 hours ago -
Plugged in 24-7
by
CWBillow
2 days, 21 hours ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
4 days ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
3 days, 21 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.