vote up 2 vote down star
2

Given a column index, how can you get an Excel column name?

The problem is tricker than it sounds because the columns don't wrap over like normal digits would. Even the Microsoft Support Example doesn't scale beyond ZZZ.

Disclaimer: This is some code I had done a while back, and it came across my desktop again today. I thought it was worthy of posting here as a pre-answered question.

flag

63% accept rate

6 Answers

vote up 1 vote down

It's for this very reason that I avoid column names in programmed interface to Excel. Using column numbers works very well in Cell(r,c) references and R1C1 addressing.

EDIT: The Range function also takes cell references, as in Range(Cell(r1,c1),Cell(r2,c2)). Also, you can use the Address function to get the A1-style address of a cell or range.

EDIT2: Here's a VBA function that uses the Address() function to retrieve the column name:

Function colname(colindex)
    x = Cells(1, colindex).Address(False, False) ' get the range name (e.g. AB1)
    colname = Mid(x, 1, Len(x) - 1)              ' return all but last character
End Function
link|flag
IIRC, you need names for the Range() function. But I don't remember the original context for this code, so I couldn't tell you how it was used for sure. – Joel Coehoorn Nov 18 '08 at 2:28
vote up 0 vote down

This has already been asked on stackoverflow, see my answer here.

link|flag
I promise I did search before posting this. At least I did add some value: the accepted answer at the other question is just plain wrong. – Joel Coehoorn Nov 21 '08 at 21:37
vote up 0 vote down check

The answer I came up with is to get a little recursive. This code is in VB.Net:

Function ColumnName(ByVal index As Integer) As String
        Static chars() As Char = {"A"c, "B"c, "C"c, "D"c, "E"c, "F"c, "G"c, "H"c, "I"c, "J"c, "K"c, "L"c, "M"c, "N"c, "O"c, "P"c, "Q"c, "R"c, "S"c, "T"c, "U"c, "V"c, "W"c, "X"c, "Y"c, "Z"c}

        index -= 1 ''//adjust so it matches 0-indexed array rather than 1-indexed column

        Dim quotient As Integer = index \ 26 ''//normal / operator rounds. \ does integer division, which truncates
        If quotient > 0 Then
               ColumnName = ColumnName(quotient) & chars(index Mod 26)
        Else
               ColumnName = chars(index Mod 26)
        End If
End Function

And in C#:

string ColumnName(int index)
{
    index -= 1; //adjust so it matches 0-indexed array rather than 1-indexed column

    int quotient = index / 26;
    if (quotient > 0)
        return ColumnName(quotient) + chars[index % 26].ToString();
    else
        return chars[index % 26].ToString();
}
private char[] chars = new char[] {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'};

The only downside it that it uses 1-indexed columns rather than 0-indexed.

link|flag
vote up 0 vote down

Here's Joel's awesome code modified to work with zero-based column indexes and without the char array.

 Public Shared Function GetExcelColumn(ByVal index As Integer) As String

        Dim quotient As Integer = index \ 26 ''//Truncate 
        If quotient > 0 Then
            Return GetExcelColumn(quotient - 1) & Chr((index Mod 26) + 65).ToString

        Else
            Return Chr(index + 65).ToString

        End If

    End Function

Many thanks to Joel for getting me on the right track!

link|flag
vote up 0 vote down
# Python 2.x, no recursive function calls

def colname_from_colx(colx):
    assert colx >= 0
    colname = ''
    r = colx
    while 1:
        r, d = divmod(r, 26)
        colname = chr(d + ord('A')) + colname
        if not r:
            return colname
        r -= 1
link|flag
vote up -1 vote down

This VB code works for any number(greater than zero)

Function IntToExcellColumnName(ByVal n As Int32) As String 
    Dim result As String = ""
    Do
        n = n - 1 'make it zero based 
        result = Chr(65 + n Mod 26) & result '65->A, 26 letters in the English alphabet
        n = n \ 26 'div
    Loop While n > 0
    Return result
End Function
link|flag
No, it doesn't. Test it around the points where new digits are added (Z -> AA, ZZ -> AAA) and you'll find it's broken. – Joel Coehoorn Jul 24 at 11:56
It works for me, Joel. Even for the cases you mentioned Z(26), AA(26+1), ZZ(702 [=26*(26+1)]), AAA(703) – jaraics Sep 21 at 12:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.