Back to Portfolio

Google Sheet Export Mutiple PDF

Google Sheet Export Mutiple PDF

What?

  • Developed a Google Apps Script solution to export multiple PDF files from a Google Sheet.
  • Automated the process of generating individualized reports or documents for various recipients.
  • Enabled dynamic content generation based on data in specific rows or columns.
  • Significantly reduced manual effort and time required for document creation.

How?

  • Wrote Google Apps Script code to interact with Google Sheets and Google Drive APIs.
  • Implemented logic to iterate through rows and generate a PDF for each relevant entry.
  • Configured PDF export settings, including page orientation and content range.
  • Set up triggers for automated execution or manual button-click activation.

Method

flowchart TB A[" Google Sheet Data"] B[" Google Apps Script"] C[" Generate PDF (per row)"] D[" Save to Google Drive"] A e1@--> B B e2@--> C C e3@--> D e1@{animation: fast } e2@{animation: fast } e3@{animation: fast }