Skip to content

Instantly share code, notes, and snippets.

View muthali's full-sized avatar
🏠
Working from home

Muthali Ganesh muthali

🏠
Working from home
View GitHub Profile
function readRows() {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();
var values = rows.getValues();
for (var i = 0; i <= numRows - 1; i++) {
var row = values[i];
Logger.log(row);