스프레드 시트를 PDF로 변환하면 효과적입니다! 그러나 exel 장을 위해 아닙니다.스프레드 시트를 Google 스크립트를 사용하여 Excel 형식으로 변환하는 방법
내 코드 : ** PDF로 스프레드 시트를 변환하는 중! :) **
var pdf2 = DriveApp.getFileById(newSpreadsheet2.getId()).getAs('application/pdf').getBytes();
var attachPdf = {fileName:'WeeklyPdfStatus.pdf',content:pdf2, mimeType:'application/pdf'};
// Send the freshly constructed email
MailApp.sendEmail("<my_MailID>@gmail.com", subject, message, {attachments:[attachPdf]});
MailApp.sendEmail("[email protected]", subject, message, {attachments:[attachPdf]});
내 코드 : ** .. 엑셀 형식으로 스프레드 시트를 변환 작동하지 않았다 :(**
var exl = DriveApp.getFileById(newSpreadsheet2.getId()).getAs('application/xls').getBlob();
var attachExl = {fileName:'WeeklyExcelStatus.xls',content:exl, mimeType:'application/xls'};
// Send the freshly constructed email
MailApp.sendEmail("<my_MailID>@gmail.com", subject, message, {attachments:[attachExl]});
내가 기본 뭔가를 누락 알고, 어떤 사람이 할 수있는 내가 변경해야이/I 엑셀 자체로 내 데이터를 얻을 수 있도록 수정 설명해 주 시겠어요?
이사전에!
감사 도와주세요 ...
* 나는 기본적인 것을 놓친다는 것을 안다. * - 예, 시작을위한 적절한 태그. – pnuts
감사합니다 "Pnuts"... 나는이 과정에 익숙하지 않으므로 변명하십시오. 메일로 Excel 스프레드 시트를 첨부하는 방법에 대한 제안이 있으십니까? –