function forLoopItems(data) {
for(let item in data) {
console.log(data[item])
}
}
// forLoopItems([1,2,3,4,5,6,7])
When you're scripting in Google Apps Script to automate data in a Google Sheet, you'll be working with Columns a lot. Sometimes you'll get those columns in Letters and sometimes you'll get them in Numbers. Most of the time, it's a pain to have to convert Numbers to Letters or the other way around.
This code snippet makes it easy to do that by giving you a simple function that'll convert your input both ways, depending on what you need.
convertColumn('number', 'G')
convertColumn('letter', '6')
function convertColumn(target, value) {
if (target == 'letter') {
let temp, letter = ''
while (value > 0) {
temp = (value - 1) % 26
letter = String.fromCharCode(temp + 65) + letter
value = (value - temp - 1) / 26
}
return letter
} else if (target == 'number') {
let column = 0, length = value.length;
for (i=0; i<length; i++) {
column += (value.charCodeAt(i) - 64) * Math.pow(26, length - i - 1);
}
return column
} else {
return 0
}
}
NitroGAS Chrome Extension
Want to reference this code snippet right from your Google Apps Script Project? Check out our NitroGAS Chrome Extension. This tool will help you build your scripts faster than you could imagine. The tool itself and access to the code snippets are 100% FREE - Happy Coding!
Get the Extension