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.
| ||||
|
feedback
|
|
I once wrote this function to perform that exact task:
| |||||||||||
feedback
|
|
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 | |||
|
feedback
|
|
Here is the cleanest correct solution I could come up with (in Java, but feel free to use your favorite language):
| |||
|
feedback
|
|
Thanks, Joseph Sturtevant! Your code works perfectly - I needed it in vbscript, so figured I'd share my version:
| |||
|
feedback
|
|
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
| ||||
|
feedback
|
|
I suppose you need VBA code:
| |||
|
feedback
|
|
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... | |||
|
feedback
|
|
This does what you want in VBA
| |||
|
feedback
|
|
Here's Gary Waters solution
via http://www.dailydoseofexcel.com/archives/2004/05/21/column-numbers-to-letters/ | |||
|
feedback
|
|
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). | ||||
|
feedback
|
|
=CHAR(64+COLUMN()) | |||||
feedback
|
|
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. | ||||
|
feedback
|
|
Assuming lngCol is the column number:
| |||
|
feedback
|
This works 2 letter columns (up until column The formula above fails on columns
| ||||
|
feedback
|
|
I currently use this, but I have a feeling that it can be optimized.
| |||
|
feedback
|