MallSerg,
а можно код ... пробовал, не осилил)))
если долго мучатся ... )))
function excelTitle(index) {
let title = '', up = "A".charCodeAt(0);
while (index >= 0) {
title = String.fromCharCode(index % 26 + up) + title;
index = index / 26 | 0;
index -= 1;
}
return title
}
//как мне получить название 26 столбика "AA" итд
let index = 26;
alert(excelTitle(index));