MS Access: Combine Multiple Reports Into One PDF (Easy Guide)

By PDFKits Team — Published July 2, 2026

How to Combine Multiple Reports Into One PDF in MS Access

If you run reports in Microsoft Access, you have probably needed to combine multiple reports into one PDF for sharing or archiving. Access exports each report separately by default, which leaves you juggling several files. The reliable fix is to export each report and then merge the PDFs into one file. This guide shows the manual method, a VBA automation, and the honest trade-offs of each.

Quick Comparison of Approaches

ApproachBest forEffortKeeps report order?
Export + mergeOne-off report packsLowYes (you choose order)
VBA automationRecurring monthly packsSetup onceYes (scripted)
Master union reportReports sharing a layoutMediumYes (single report)

Method 1: Export Each Report, Then Merge the PDFs

This works in any version of Access:

  1. Open your first report in Access.
  2. Go to External Data > PDF or XPS and export it as a PDF.
  3. Repeat for each report.
  4. Use PDFKits to merge the exported PDFs in the order you want. Files are processed in your browser and never uploaded, so confidential financial reports stay private.

Method 2: Automate the Export With VBA

For recurring tasks, loop through your reports and export each with DoCmd.OutputTo acOutputReport, "ReportName", acFormatPDF, "C:\reports\report.pdf". Once exported, merge them in a single step. Honest limitation: VBA exports the reports but does not merge them, you still need a merge step afterward.

Method 3: Build a Single Master Report

If your reports share a layout, create one report driven by a query that unions the underlying data. A single report exports as one PDF automatically, no merging required. This works best when columns and grouping are consistent across reports.

Keeping Page Order and Formatting

When merging, confirm the sequence so the combined PDF reads correctly, and check that page sizes match (Letter or A4) so it prints consistently. If the merged file is large, you can compress the PDF before emailing.

Frequently Asked Questions

Can I combine Access reports into one PDF for free? Yes. Access includes free PDF export, and PDFKits merges the files for free in your browser.

Will merging change my report formatting? No. Merging keeps each report exactly as exported; it only places them into one file.

Is it safe to merge confidential reports online? With PDFKits, files are processed in your browser and never uploaded, so your reports stay on your device.

Conclusion

Combining multiple Access reports into one PDF is simple: export each report, then merge them with PDFKits. For one-off jobs, export and merge manually; for recurring packs, automate the export with VBA and finish with a quick, private merge.

→ Try merge PDF — Free & Online