Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Alphabetic Column Designation.
Written by Allen Wyatt (last updated April 4, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365
You can easily determine the numeric column of cell by using the COLUMN function. All you need to do is put a formula like this in a cell, and the result is a value where A=1, B=2, etc.:
=COLUMN()
What if you want an alphabetic value, rather than a numeric value? This can be done in any of several different ways. For instance, the following formula will work very nicely for the first 26 columns, A through Z:
=CHAR(COLUMN()+64)
This works because the letters A through Z use character codes 65 through 90. When COLUMN returns a value for columns A through Z (1 through 26), this can be added to 64 to get the letters of those columns, 65 through 90.
Of course, this solution won't work if you want to know the letter designations of columns beyond Z. Since a column in Excel can have up to three digits (Excel can use columns up through XFD), a different approach to finding the column letters is in order:
=LEFT(ADDRESS(1,COLUMN(),4),LEN(ADDRESS(1,COLUMN(),4))-1)
The ADDRESS function returns the address of a specific cell. In this case, it returns the address for the cell in the first row of the current column. Thus, if the formula is in cell BF27, it returns BF1. The formula uses the LEFT function to return the correct number of left-most characters in the address, minus the number 1 for the row.
An even shorter version of the formula relies upon the SUBSTITUTE function instead of the LEFT function:
=SUBSTITUTE(ADDRESS(1,COLUMN(),4),1,"")
Of course, you can also use a macro-based solution, if you want to. The following macro will work with one, two, or three character columns:
Function AlphaCol(c As Range) As String
Dim ad1 As String
ad1 = c.Address
AlphaCol = Mid(ad1, InStr(ad1, "$") + 1, InStr(2, ad1, "$") - 2)
End Function
The macro is a user-defined function, which means that you can use it in your worksheets by simply adding this to any cell:
=AlphaCol(J12)
The cell referenced in the function call is a cell (any cell) within the column whose letter you want to know. The function finds that address for that cell and strips out everything except the column designation. A text string is returned, consisting of the column designation.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9240) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Alphabetic Column Designation.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2019 For Dummies today!
Formulas are the heart of using Excel, and formulas often refer to ranges of cells. How you insert cells into the ...
Discover MoreCounting the number of times text occurs within a range of cells can be relatively easy. If you need to only count ...
Discover MoreExcel is very good at counting things, even when those things need to meet specific criteria. This tip shows how you can ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2026-04-05 11:49:22
J. Woolley
By the way, the Tip uses the word macro as slang for a VBA procedure. Excel defines Macro as a Public Sub procedure that has no parameters; these are the only procedures that appear in the Macro dialog box, which is displayed using Developer > Macros or Alt+F8.
While I'm at it, a procedure's parameters are variables listed in its declaration statement; the Tip's Function AlphaCol has a single parameter c. An argument is a value substituted for a parameter when the procedure is called; J12 is an argument in the formula =AlphaCol(J12).
2026-04-05 10:45:12
J. Woolley
Alex Blakenburg beat me to it.
Here's a simpler alternative to the Tip's VBA Function AlphaCol:
Function AlphaCol2(c As Range) As String
AlphaCol2 = Split(c.Address, "$")(1)
End Function
For example, the following formula returns ABC for cell ABC123 (or $ABC123 or ABC$123 or $ABC$123):
=AlphaCol2(ABC123)
But this formula returns the same result using standard Excel functions:
=INDEX(TEXTSPLIT(CELL("address", ABC123), "$"), 2)
TEXTSPLIT requires Excel 2024. For older versions, here's the equivalent CSE array formula using My Excel Toolbox's SplitText function:
=INDEX(SplitText(CELL("address", ABC123), "$"), 2)
See https://sites.google.com/view/MyExcelToolbox/
2026-04-05 09:15:59
Alex Blakenburg
For the macro this should work too.
AlphaCol = Split(ad1, "$")(1)
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2026 Sharon Parq Associates, Inc.
Comments