I have a text box that asks what the starting number should be for a set of exhibits. I have everything working fine with plain 1,2,3 numbers. My problem is that there is also an option to number the exhibits alphabetically. If you enter the numeric value of the letter you want the series to start at, everything works fine (3 for c, 30 for dd). However, if a user wants to start the series at C, they need to be able to type C in the text box instead of 3 and have the series start at C. Is there a way to interpret the text this way? Ascii values won’t work because they don’t go a-z and then aa-zz. Any ideas???
![]() |
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 |
-
change alpha value to numeric (Word 2002 VBA)
Home » Forums » AskWoody support » Productivity software by function » Visual Basic for Applications » change alpha value to numeric (Word 2002 VBA)
- This topic has 7 replies, 3 voices, and was last updated 21 years, 2 months ago.
AuthorTopicWSGirlFriday
AskWoody LoungerApril 6, 2004 at 7:39 pm #403355Viewing 3 reply threadsAuthorReplies-
WSjscher2000
AskWoody LoungerApril 6, 2004 at 8:28 pm #810925How about:
Function AlphabetPosition(strLetter As String) As Integer Select Case Len(strLetter) Case 0 AlphabetPosition = 0 Case Else AlphabetPosition = InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ Left(strLetter, 1), vbTextCompare) End Select End Function Sub Test_AlphabetPosition() MsgBox AlphabetPosition(InputBox("Give me a letter, any letter")) End Sub
It is not case sensitive. I don’t know if this is important for your application.
-
WSStuartR
AskWoody LoungerApril 7, 2004 at 3:31 am #811092I usually use the syntax
Asc(Lcase(strLetter)) – Asc(“a”) + 1
to convert a letter to a number.And if you don’t care about the readability of your code this can be simplified to
Asc(Lcase(strLetter)) – 96I have no idea which method is more efficient, but I thought you might like to see an alternate approach…
StuartR
-
WSStuartR
AskWoody LoungerApril 7, 2004 at 3:31 am #811093I usually use the syntax
Asc(Lcase(strLetter)) – Asc(“a”) + 1
to convert a letter to a number.And if you don’t care about the readability of your code this can be simplified to
Asc(Lcase(strLetter)) – 96I have no idea which method is more efficient, but I thought you might like to see an alternate approach…
StuartR
-
-
WSjscher2000
AskWoody LoungerApril 6, 2004 at 8:28 pm #810926How about:
Function AlphabetPosition(strLetter As String) As Integer Select Case Len(strLetter) Case 0 AlphabetPosition = 0 Case Else AlphabetPosition = InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ Left(strLetter, 1), vbTextCompare) End Select End Function Sub Test_AlphabetPosition() MsgBox AlphabetPosition(InputBox("Give me a letter, any letter")) End Sub
It is not case sensitive. I don’t know if this is important for your application.
-
WSjscher2000
AskWoody LoungerApril 6, 2004 at 8:33 pm #810929Ohhhh… you permit double letters. Okay, it gets a bit more complicated:
Function AlphabetPosition(strLetter As String) As Integer Select Case Len(strLetter) Case 0 AlphabetPosition = 0 Case 1 AlphabetPosition = InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ strLetter, vbTextCompare) Case 2 AlphabetPosition = (InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ Mid(strLetter, 1, 1), vbTextCompare) * 26) + InStr(1, _ "ABCDEFGHIJKLMNOPQRSTUVWXYZ", Mid(strLetter, 2, 1), vbTextCompare) Case Else AlphabetPosition = 0 End Select End Function Sub Test_AlphabetPosition() MsgBox AlphabetPosition(InputBox("Give me a letter (or two), any letter")) End Sub
Does that do it??
-
WSGirlFriday
AskWoody Lounger
-
-
WSjscher2000
AskWoody LoungerApril 6, 2004 at 8:33 pm #810930Ohhhh… you permit double letters. Okay, it gets a bit more complicated:
Function AlphabetPosition(strLetter As String) As Integer Select Case Len(strLetter) Case 0 AlphabetPosition = 0 Case 1 AlphabetPosition = InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ strLetter, vbTextCompare) Case 2 AlphabetPosition = (InStr(1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", _ Mid(strLetter, 1, 1), vbTextCompare) * 26) + InStr(1, _ "ABCDEFGHIJKLMNOPQRSTUVWXYZ", Mid(strLetter, 2, 1), vbTextCompare) Case Else AlphabetPosition = 0 End Select End Function Sub Test_AlphabetPosition() MsgBox AlphabetPosition(InputBox("Give me a letter (or two), any letter")) End Sub
Does that do it??
Viewing 3 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
-
Cell Phone vs. Traditional Touchtone Phone over POTS
by
280park
2 hours, 9 minutes ago -
Lost access to all my networked drives (shares) listed in My Computer
by
lwerman
2 hours ago -
Set default size for pasted photo to word
by
Cyn
8 hours, 1 minute ago -
Dedoimedo tries 24H2…
by
Cybertooth
3 hours, 4 minutes ago -
Windows 11 Insider Preview build 27871 released to Canary
by
joep517
1 day, 6 hours ago -
Windows 11 ad from Campaign Manager in Windows 10
by
Jim McKenna
1 day, 4 hours ago -
Small desktops
by
Susan Bradley
6 hours, 11 minutes ago -
Totally disable Bitlocker
by
CWBillow
33 minutes ago -
Phishers extract Millions from HMRC accounts..
by
Microfix
1 day, 4 hours ago -
Windows 10 22H2 Update today (5 June) says up-to-date but last was 2025-04
by
Alan_uk
2 days, 10 hours ago -
Thoughts on Malwarebytes Scam Guard for Mobile?
by
opti1
5 hours, 42 minutes ago -
Mystical Desktop
by
CWBillow
2 days, 14 hours ago -
Meta and Yandex secretly tracked billions of Android users
by
Alex5723
1 day, 19 hours ago -
MS-DEFCON 2: Do you need that update?
by
Susan Bradley
11 hours, 29 minutes ago -
CD/DVD drive is no longer recognized
by
WSCape Sand
3 days, 5 hours ago -
Windows 11 24H2 Default Apps stuck on Edge and Adobe Photoshop
by
MikeBravo
3 days, 8 hours ago -
North Face and Cartier customer data stolen in cyber attacks
by
Alex5723
3 days, 6 hours ago -
What is wrong with simple approach?
by
WSSpoke36
1 day, 4 hours ago -
Microsoft-Backed Builder.ai Set for Bankruptcy After Cash Seized
by
Alex5723
3 days, 17 hours ago -
Location, location, location
by
Susan Bradley
2 days, 8 hours ago -
Cannot get a task to run a restore point
by
CWBillow
3 days, 19 hours ago -
Frustrating search behavior with Outlook
by
MrJimPhelps
3 days, 9 hours ago -
June 2025 Office non-Security Updates
by
PKCano
4 days, 5 hours ago -
Secure Boot Update Fails after KB5058405 Installed
by
SteveIT
1 hour, 32 minutes ago -
Firefox Red Panda Fun Stuff
by
Lars220
4 days, 5 hours ago -
How start headers and page numbers on page 3?
by
Davidhs
4 days, 16 hours ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
3 days, 19 hours ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
5 days ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
5 days, 1 hour ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
4 days, 14 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.