Skip to content

Instantly share code, notes, and snippets.

@ik11235
Last active August 29, 2015 14:18
Show Gist options
  • Save ik11235/5e3d7e8da2872e9e969c to your computer and use it in GitHub Desktop.
Save ik11235/5e3d7e8da2872e9e969c to your computer and use it in GitHub Desktop.
<? var data = SpreadsheetApp
.openById('1BqDVWjXT5lYw6UKPcCXlnxPleMkfnwF1Dhe01Icbwdo')
.getActiveSheet()
.getDataRange()
.getValues(); ?>
<table>
<? for (var i = 0; i < data.length; i++) { ?>
<tr>
<? for (var j = 0; j < data[i].length; j++) { ?>
<td><?= data[i][j] ?></td>
<? } ?>
</tr>
<? } ?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment