C
CPiper
Is it possible to convert numbers to the corresponding
alaphabetic equivelant? 1=A, 2=B,....27=AA
alaphabetic equivelant? 1=A, 2=B,....27=AA
...One possible way using a formula and a lookup table, create the table
put this formula in a cell and copy down 256 rows
=LEFT(ADDRESS(1,ROW(1:1),4),IF(ROW(1:1)>26,2,1))
...=IF(X>26^3,CHAR(64+INT(X/26^3)),"")
&IF(X>26^2,CHAR(64+INT(MOD(X,26^3)/26^2)),"")
&IF(X>26,CHAR(64+INT(MOD(X,26^2)/26)),"")
&CHAR(64+MOD(X,26))