Google Spreadsheet Scripts February 4th, 2015

Google provides the ability to script spreadsheets via JavaScript and their library’s methods. Tools > Script editor…


function DOUBLE(input) {
return input * 2;
// EXAMPLE ... =DOUBLE(A2)
}