Excel column converter
Convert a spreadsheet column number to its letter, or a column letter back to its number.
Excel column converter
Spreadsheets label columns with letters — A, B, C… Z, AA, AB — but formulas, scripts and APIs usually work with the plain ordinal number instead: 1, 2, 3… This tool converts between the two. Paste a list of column numbers to get their letter labels (1 becomes A, 27 becomes AA, 703 becomes AAA), or paste column letters to get their numeric position. "Direction" switches between the two ways, and its swap button flips a finished conversion straight back into the input.
The letter system isn't a simple base-26 count — there's no digit for zero, so after Z the next column carries into a new letter instead of resetting one, which is why column 26 is Z but 27 is AA rather than A0. That quirk is exactly what trips up a hand-rolled formula, and it's handled correctly here up to and past Excel's real last column, XFD (16384).
Turn on the row number to get a full cell address instead of a bare column: set it to 5 and column AA becomes AA5. "Address notation" chooses how that address is written — A1 style (AA5) for everyday formulas, or R1C1 style (R5C27) for VBA, macros and any API that addresses cells numerically. Leave the row at 0 for plain column letters or numbers.
Paste one value per line — the whole list converts at once, and any line that isn't a valid column number or letter is reported by line number so a stray heading or typo doesn't silently corrupt the rest. Everything runs locally in your browser: exported headers, formulas and sheet structure never leave your device. Copy the result, download it as a .txt file, or send it into another tool.