Skip to main content

How to get a row or column letter of the current cell in Excel?

Have you ever tried to get the row or column letter of the current cell in Excel as below screenshot shown? Here, I introduce some formulas to quickly get the row letter or column letter of the active cell.

Get row or column letter of current cell


Get row or column letter of current cell

Get row letter of current cell

Copy one of the following formulas, paste it into the active cell, and press the Enter key to get the relative letter.

=CHAR(ROW()+64)

=LEFT(ADDRESS(1,ROW(),2),1+(ROW()>26))

doc get column row letter 1

Get column letter of current cell

Copy one of the following formulas, paste it into the active cell, and press the Enter key to get the relative letter.

=CHAR(COLUMN()+64)

=LEFT(ADDRESS(1,COLUMN(),2),1+(COLUMN()>26))

doc get column row letter 2

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (5)
Rated 5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
= MID(ADDRESS(1,Column()),2, FIND("$",ADDRESS(1,Column()),2)-2)

None of those listed solve this. What I posted here does, regardless of it be "A" "AA" "AAA"
Note, Column() can be used to point to any number for a column, i.e. Column(13) returns "M", Column(53) returns "BA", Column(712) returns "AAJ" but be sure to update both mentioned instances.
Rated 5 out of 5
This comment was minimized by the moderator on the site
To get any Column Letter:
=MID(ADDRESS(1,COLUMN()),2,LEN(ADDRESS(1,COLUMN()))-3)

ADDRESS(1,COLUMN()) returns $A$1, $AA$1, $XFD$1, etc. based on lookup position put into the () of column part of equation.
LEN counts characters
MID gathers characters at starting position and count length from there. Start at 2 to eliminate the initial $ and go total LEN - 3 to get rid of ending $1 as well as the starting $ because we shifted our start position.
This comment was minimized by the moderator on the site
This only works from A->Z, when you go with two caracters, it stops working :(
This comment was minimized by the moderator on the site
Ugh. I just figured that out as well.

Any idea how to fix for Column AA and onward?
This comment was minimized by the moderator on the site
=LOWER(SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","")) - small letters

or

=SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","") - caps
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations