Skip to content

Instantly share code, notes, and snippets.

@juniorthiesen
Last active August 29, 2015 14:25
Show Gist options
  • Save juniorthiesen/8aecac6853b7c828788e to your computer and use it in GitHub Desktop.
Save juniorthiesen/8aecac6853b7c828788e to your computer and use it in GitHub Desktop.
\\script para gerar e salvar um pdf dentro do drive.
function onOpen() {
SpreadsheetApp
.getUi()
.createMenu('Gerar PDF')
.addItem('Gerar PDF', 'printpdf')
.addToUi();
}
function printpdf() {
//Gera o PDF e salva no Google drive
var spreadsheet_id = ('1VQnvUk1Hq4R60aUpJm6pEPe66nBUye5PTDJo4HGUrdA');
var spreadsheetFile = DriveApp.getFileById(spreadsheet_id);
var blob = spreadsheetFile.getAs('application/pdf');
DriveApp.createFile(blob);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment