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 |
||
|
|
|
|
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 A2 Use this function:
|
||
|
|
|
|
I currently use this, but I have a feeling that it can be optimized.
|
||
|
|
|
|
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). |
|||
|
|
|
|
It may be overkill but it seems like a base-26 number/radix solution is the ideal solution here. |
||
|
|
|
|
=CHAR(64+COLUMN()) |
||
|
|
|
|
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. |
|||
|
|