Need the column letter for column number 28 (it’s AB)? Excel has no direct function, but ADDRESS builds a cell reference you can strip down to just the letters — handy for dynamic references and reporting.
AB1; removing the row number 1 leaves just AB.
The example
Column numbers converted to their letters.
| A | B | |
|---|---|---|
| 1 | Number | Letter |
| 2 | 1 | A |
| 3 | 28 | AB |
| 4 | 100 | CV |
The formula
The column letter for a number:
How it works
Build an address, then keep only the letters:
ADDRESS(1, A2, 4)builds a relative reference for row 1, column A2 — for 28 that’sAB1. The4means relative (no$signs).SUBSTITUTE(…, "1", "")removes the row number, leaving just the column lettersAB.- Use row 1 so the only digit to remove is
1— that’s why the formula targets"1". - Going the other way (letter → number)?
=COLUMN(AB1)returns 28.
Column letter of the current cell: =SUBSTITUTE(ADDRESS(1, COLUMN(), 4), "1", "") — COLUMN() feeds its own column number in, so the formula reports whichever column it sits in.
Try it: interactive demo
Enter a column number; get its letter.
Variations
Letter → number
COLUMN with a reference:
Current column letter
Self-referencing:
Full address as text
The whole reference (with row):
Pitfalls & errors
Use row 1 in ADDRESS. The SUBSTITUTE removes the digit "1"; with any other row, removing its digits could mangle a letter (none contain digits, but the row 1 keeps it simple and safe).
Don’t confuse the 4th argument. 4 gives a plain relative reference; 1 would add $ signs that you’d then have to strip too.
Numbers beyond 16384 error. That’s the last column (XFD); ADDRESS can’t build a reference past it.
Practice workbook
Frequently asked questions
How do I get the column letter from a number in Excel?
How do I convert a column letter back to a number?
How do I get the letter of the current column?
Stop fighting formulas. Learn them in a day.
This recipe is one of hundreds of real-world formulas we teach. Our Excel Formulas & Functions class covers lookups, logic, text, and dynamic arrays hands-on — live in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.
See the Formulas & Functions Class