Skip to content

Instantly share code, notes, and snippets.

@lucasvinbr
lucasvinbr / export-sheets-as-csv.gs
Last active July 15, 2022 21:03 — forked from marcellusmontilla/export-named-sheet-as-csv.gs
Google apps script to export all sheets as csv files
/*
* script to export data of all sheets as csv files
* files are stored in a Google Drive folder
* files named according to the name of the sheets
* original author: Michael Derazon (https://gist.github.com/mderazon/9655893)
*/
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var csvMenuEntries = [{name: "Save as CSV", functionName: "saveAsCSV"}];