Hi! You may use the ADDRESS function. Answer from Heatshiver on reddit.com
MrExcel
mrexcel.com › forums › question forums › excel questions
Convert Alphabet to number (a=1, b=2, etc.) | MrExcel Message Board
April 21, 2007 - Try: =COLUMN(INDIRECT(A1&1)) Where A1 houses the Letter to convert.
Microsoft Community
techcommunity.microsoft.com › microsoft community hub › communities › products › microsoft 365 › excel
Excel -- Converting letters to number | Microsoft Community Hub
Option Compare Text Function LettersToNumbers(text As String) As Integer Dim i As Integer Dim result As String For i = 1 To Len(text) Select Case Mid(text, i, 1) Case "a" result = result & 1 Case "b" result = result & 2 Case "c" result = result & 3 Case "d" result = result & 4 Case "e" result = result & 5 Case "f" result = result & 6 Case "g" result = result & 7 Case "h" result = result & 8 Case "i" result = result & 9 Case "j" result = result & 0 End Select Next LettersToNumbers = result End Function · Please follow this https://www.excel-easy.com/vba/examples/user-defined-function.html to figure out how to insert this function into your own workbook.
Videos
03:03
How to convert numbers into text in Excel|how to write number as ...
How to Convert Number to Chifre to Letter on Excel
02:21
How to convert numbers to letters in Excel
01:39
How to Make a Letter Equal a Number in Excel | A=1, B=2 etc - YouTube
04:51
Excel How To Convert Text to Number - YouTube
MyExcelOnline
myexcelonline.com › home › 4 easy methods to convert alphabet to number in excel
4 Easy Methods to Convert Alphabet to Number in Excel | MyExcelOnline
April 2, 2024 - The MATCH function can be used to convert a letter to its relevant numerical column position. A VBA script can be used to create a custom function for letter-to-number conversion. ... Excel is mainly used for numbers, but when needed, it can be used to convert letters to numbers as well.
TutorialsPoint
tutorialspoint.com › how-to-convert-letter-to-number-or-vice-versa-in-excel
How to Convert Letter to Number or Vice Versa in Excel?
Sometimes in Excel, for encrypting the data, you have needed to convert letters to numbers based on their position in the alphabet series. For example, a = 1, b = 2, z = 26, and so on. Read this tutorial to learn how we can convert a letter to a number or a number to a letter based on their position in Excel.
Ablebits
ablebits.com › ablebits blog › excel › excel formulas › how to convert excel column number to letter
How to convert Excel column number to letter
March 9, 2023 - Paste the code in the VBA editor, and your new ColumnLetter function is ready for use. For the detailed guidance, please see: How to insert VBA code in Excel. From the end-user viewpoint, the function's syntax is as simple as this: ... Where col_num is the column number that you want to convert into a letter....
ExtendOffice
extendoffice.com › documents › excel › how to convert letter to number or vice versa in excel?
How to convert letter to number or vice versa in Excel?
2. Then drag the fill handle over to the range that you want to contain this formula, and the numbers have been converted to their relative letters as you need. See screenshot: Tip: (1) If the number is greater than 26, the formula will return empty; (2) If the number is less than 1, the formula will return #VALUE! error value; (3) If the number is a decimal number, the formula will trim number to a whole number and then calculate. If have installed Kutools for Excel, you can use its Numbers to Currency Words feature to convert all selected numbers to currency words in bulk in Excel.
Reddit
reddit.com › r/excel › how to convert a column number to a column letter
r/excel on Reddit: How to convert a column number to a column letter
July 13, 2023 -
Let's say in cell A1 I have the value 3 written. I would like to reference a cell with the column letter referenced by the column number in cell A1. So in this case, I would like to reference cell C5 (the row doesn't matter, it's just for the example).
How do I go about turning the "3" to a "C"?
Edit: All suggestions worked, thanks everyone.
LinkedIn
linkedin.com › pulse › excel-how-convert-number-corresponding-english-excel-vba-power-bi
Excel - How to Convert Number to corresponding English Alphabet
December 30, 2020 - There may be scenarios where you need to convert numbers 1, 2 to 25, 26 to a, b to y, z (Or to A, B to Y, Z) You can use one of the following formulas to do it (first one is for lower case and second one is for upper case) =CHAR(A1+96) =CHAR(A1+64) Formula explanation If you use formula =CHAR(97), t
TeachExcel
teachexcel.com › excel-tutorial › convert-column-number-to-letter-using-a-formula-in-excel_1596.html
Convert Column Number to Letter Using a Formula in Excel - TeachExcel.com
This is a neat little trick that allows you to get the letters for any column using only a number as the reference for it. The ADDRESS() function gives us the address of a cell based on a column and row number and the SUBSTITUTE() function replaces the number part of the cell reference with nothing, which removes the number. If you want to see this in Excel, just split these two functions into their own cell and look at the results:
Better Solutions
bettersolutions.com › excel › formulas › convert-column-number-to-column-letter.htm
Excel Formula - Convert column number to column letter
Microsoft Excel · Formulas · ITEM · Other · Complete List · Updated: 01 December 2025 · 01 December 2025 · You can convert the column number into its corresponding column letter. ADDRESS - The cell reference given a row and column number. SUBSTITUTE - The text string after replacing instances of a substring. Col_Letter - VBA equivalent · Convert column letter to column number ·
Reddit
reddit.com › r/excel › how to convert letter to number?
r/excel on Reddit: How to convert letter to number?
April 21, 2021 -
Hello, I am trying to analyze some data and need help. I would like to convert two specific letters to numbers. "P" to 1 and "A" to 0. Every time I Google this I come up blank. I have attached a screenshot if that is helpful. Thank you!
Javatpoint
javatpoint.com › how-can-we-convert-column-numbers-to-letters-in-microsoft-excel
How can we convert column numbers to letters in Microsoft Excel - javatpoint
How can we convert column numbers to letters in Microsoft Excel with topics of ribbon and tabs, quick access toolbar, mini toolbar, buttons, worksheet, data manipulation, function, formula, vlookup, isna and more.
MrExcel
mrexcel.com › forums › question forums › excel questions
Convert column number to letter | MrExcel Message Board
January 17, 2004 - For example, =Address(1,2,4) would return "B1" Because the rownumber fed to the address function in this case is always 1, the substitute function is used to replace 1 with "", leaving the column Letter(s). [Edit] =Column() returns the column number of the hose cell, so =Address(1,2,4) would return a string containing the relative reference of the first cell in the column of the host cell.
DataCamp
datacamp.com › tutorial › excel-convert-text-to-number
Excel Convert Text to Number: Easy Methods That Work | DataCamp
April 29, 2025 - If Excel detects numbers stored as text, a small green triangle appears in the corner of the cell. To fix it: Select the cell or range of cells. Click the yellow exclamation point icon that appears. Choose Convert to Number from the dropdown menu.