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???
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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
-
Firefox Red Panda Fun Stuff
by
Lars220
1 hour, 16 minutes ago -
How start headers and page numbers on page 3?
by
Davidhs
4 hours, 49 minutes ago -
Attack on LexisNexis Risk Solutions exposes data on 300k +
by
Nibbled To Death By Ducks
2 hours, 18 minutes ago -
Windows 11 Insider Preview build 26200.5622 released to DEV
by
joep517
13 hours, 29 minutes ago -
Windows 11 Insider Preview build 26120.4230 (24H2) released to BETA
by
joep517
13 hours, 31 minutes ago -
MS Excel 2019 Now Prompts to Back Up With OneDrive
by
lmacri
3 hours, 12 minutes ago -
Firefox 139
by
Charlie
15 hours, 54 minutes ago -
Who knows what?
by
Will Fastie
8 hours, 36 minutes ago -
My top ten underappreciated features in Office
by
Peter Deegan
14 hours, 15 minutes ago -
WAU Manager — It’s your computer, you are in charge!
by
Deanna McElveen
8 hours, 38 minutes ago -
Misbehaving devices
by
Susan Bradley
16 hours, 23 minutes ago -
.NET 8.0 Desktop Runtime (v8.0.16) – Windows x86 Installer
by
WSmeyerbos
1 day, 20 hours ago -
Neowin poll : What do you plan to do on Windows 10 EOS
by
Alex5723
1 hour, 30 minutes ago -
May 31, 2025—KB5062170 (OS Builds 22621.5415 and 22631.5415 Out-of-band
by
Alex5723
1 day, 18 hours ago -
Discover the Best AI Tools for Everything
by
Alex5723
17 hours, 57 minutes ago -
Edge Seems To Be Gaining Weight
by
bbearren
1 day, 9 hours ago -
Rufus is available from the MSFT Store
by
PL1
1 day, 17 hours ago -
Microsoft : Ending USB-C® Port Confusion
by
Alex5723
2 days, 19 hours ago -
KB5061768 update for Intel vPro processor
by
drmark
19 hours, 44 minutes ago -
Outlook 365 classic has exhausted all shared resources
by
drmark
18 hours, 27 minutes ago -
My Simple Word 2010 Macro Is Not Working
by
mbennett555
2 days, 15 hours ago -
Office gets current release
by
Susan Bradley
2 days, 18 hours ago -
FBI: Still Using One of These Old Routers? It’s Vulnerable to Hackers
by
Alex5723
4 days, 8 hours ago -
Windows AI Local Only no NPU required!
by
RetiredGeek
3 days, 16 hours ago -
Stop the OneDrive defaults
by
CWBillow
4 days, 9 hours ago -
Windows 11 Insider Preview build 27868 released to Canary
by
joep517
4 days, 19 hours ago -
X Suspends Encrypted DMs
by
Alex5723
4 days, 21 hours ago -
WSJ : My Robot and Me AI generated movie
by
Alex5723
4 days, 21 hours ago -
Botnet hacks 9,000+ ASUS routers to add persistent SSH backdoor
by
Alex5723
4 days, 22 hours ago -
OpenAI model sabotages shutdown code
by
Cybertooth
4 days, 22 hours ago
Recent blog posts
Key Links
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
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.