How would you determine the column name (e.g. "AQ" or "BH") of the nth column in Excel?
Edit: A language-agnostic algorithm to determine this is the main goal here.
|
How would you determine the column name (e.g. "AQ" or "BH") of the nth column in Excel? Edit: A language-agnostic algorithm to determine this is the main goal here. |
||||
|
|
|
I once wrote this function to perform that exact task:
|
|||||||||||||||
|
|
A language agnostic algorithm would be as follows:
This algorithm also takes into account if Excel gets upgraded again to handle more than 16k columns. If you really wanted to go overboard, you could pass in an additional value and replace the instances of 26 with another number to accomodate alternate alphabets |
|||
|
|
|
Here is the cleanest correct solution I could come up with (in Java, but feel free to use your favorite language):
But please do let me know of if you find a mistake in this code, thank you. |
||||
|
|
|
Thanks, Joseph Sturtevant! Your code works perfectly - I needed it in vbscript, so figured I'd share my version:
|
|||
|
|
|
Joseph's code is good but, if you don't want or need to use a VBA function, try this. Assuming that the value of n is in cell
|
||||
|
|
This works 2 letter columns (up until column The formula above fails on columns
|
||||
|
|
|
FROM wcm: If you don't want to use VBA, you can use this replace colnr with the number you want =MID(ADDRESS(1,colnr),2,LEN(ADDRESS(1,colnr))-3) Please be aware of the fact that this formula is volatile because of the usage of the ADDRESS function. Volatile functions are functions that are recalculated by excel after EVERY change. Normally excel recalculates formula's only when their dependent references changes. It could be a performance killer, to use this formula. |
|||
|
|
|
Ruby one-liner:
It converts the integer to base26 then splits it and does some math to convert each character from ascii. Finally joins 'em all back together. No division, modulus, or recursion. Fun. |
|||
|
|
|
This seems to work in vb.net
I took Joseph's and tested it to BH, then fed it 980-1000 and it looked good. |
||||
|
|
|
I suppose you need VBA code:
|
|||
|
|
|
All these code samples that these good people have posted look fine. There is one thing to be aware of. Starting with Office 2007, Excel actually has up to 16,384 columns. That translates to XFD (the old max of 256 colums was IV). You will have to modify these methods somewhat to make them work for three characters. Shouldn't be that hard... |
|||
|
|
|
This does what you want in VBA
|
|||
|
|
|
Here's Gary Waters solution
via http://www.dailydoseofexcel.com/archives/2004/05/21/column-numbers-to-letters/ |
|||
|
|
|
Considering the comment of wcm (top value = xfd), you can calculate it like this;
There are 26 characters in the alphabet and we have a number system just like hex or binary, just with an unusual character set (A..Z), representing positionally the powers of 26: (26^2)(26^1)(26^0). |
||||
|
|
|
=CHAR(64+COLUMN()) |
|||||
|
|
FYI T-SQL to give the Excel column name given an ordinal (zero-based), as a single statement. Anything below 0 or above 16,383 (max columns in Excel2010) returns NULL.
|
||||
|
|
|
And here is a conversion from the VBScript version to SQL Server 2000+.
|
||||
|
|
|
In VBA, assuming lCol is the column number:
|
||||
|
|
|
I currently use this, but I have a feeling that it can be optimized.
|
|||
|
|