Skip to content

Instantly share code, notes, and snippets.

@potmat
potmat / parseHtml.js
Last active January 19, 2018 12:29
Extract Merged Cells and Formatted Values for Google Spreadsheets in Apps Script
function columnToLetter(column)
{
var temp, letter = '';
while (column > 0)
{
temp = (column - 1) % 26;
letter = String.fromCharCode(temp + 65) + letter;
column = (column - temp - 1) / 26;
}
return letter;