Column numbers to letters

The function COLUMN() translates column’s names (letters) to numbers (For example, =COLUMN(AA:AA) will return 27

Is there a function doing the opposite? I need a function like =NUMBER2COLUMN(28) that would output "AB" for example

Thanks!

=SUBSTITUTE(ADDRESS(1;28;4);1;"")

;COLUMN(); to give the header of the actual column.
imagen

Thanks a lot!

Hallo
Did you know that, for Example:

=INDEX($A$1:$XFD1000; 3 ; 28 )

returns the Content of Cell AB3

2 Likes

Calc convert this formula to =INDEX($1:1000; 3 ; 28 ), given that A:XFD are all the columns.
(LibreOffice 7.6.7.2)

I didn’t know that. It indeed is pretty useful. Thanks!