How to Merge PDFs in Adobe Acrobat

A practical guide to combining PDF files — from drag-and-drop to JavaScript automation — and keeping bookmarks, links, and form fields intact.

← Back to Blog

Why You Need to Merge PDFs

Combining multiple PDF files into a single document is one of the most common tasks performed in Adobe Acrobat. Whether you are assembling a board report from separate department contributions, combining signed contracts with their supporting schedules, collating a product catalogue from individual chapter files, or packaging a tender submission from multiple source documents, the ability to merge PDFs quickly and reliably is essential to any document-heavy workflow.

Adobe Acrobat Pro offers several methods for merging PDFs, each suited to different scenarios. This guide covers all the main approaches — from the visual drag-and-drop interface to JavaScript automation for batch merging — as well as what to expect when bookmarks, links, form fields, and PDF/A compliance are involved.

Method 1: Combine Files Tool

The Combine Files tool is the most straightforward way to merge PDFs in Acrobat and is the best choice for most users.

Opening the Combine Files Tool

  • Open Adobe Acrobat Pro and go to Tools > Combine Files.
  • Alternatively, from the Home screen, select Combine Files from the tool shortcuts panel.

Adding Files

  • Click Add Files to browse for PDFs, or drag and drop files directly into the Combine Files window.
  • You can add entire folders — Acrobat will include all supported files from the folder.
  • Non-PDF files such as Word documents, Excel spreadsheets, images, and PowerPoint presentations can also be added; Acrobat will convert them during the merge process.

Reordering and Previewing Pages

  • Files are displayed as thumbnail cards. Drag them into the desired order before combining.
  • Click the expand arrow on any file card to view individual page thumbnails, allowing you to include only specific pages from each file.
  • To remove a file or individual page from the selection, click the X on its thumbnail.

Combining

Once the files and pages are arranged, click Combine. Acrobat merges all selected content into a new untitled PDF. Save this file to your chosen location using File > Save As.

Method 2: Insert Pages from the Organize Pages Panel

If you already have the target document open and want to insert additional pages from another PDF, the Organize Pages panel offers a more precise approach.

  1. Open the PDF you want to add pages to.
  2. Go to Tools > Organize Pages (or open the Organize Pages panel from the right-hand tools pane).
  3. Right-click on the page thumbnail where you want to insert content. Choose Insert Pages and then From File.
  4. Browse to the source PDF and click Open.
  5. In the Insert Pages dialog, specify whether to insert the new pages Before or After the selected page, and which pages from the source document to include.
  6. Click OK to complete the insertion.

This method is ideal when you need to insert pages at a precise location within an existing document rather than appending files end-to-end.

Method 3: Combine Files via Windows Explorer

If Adobe Acrobat is installed on your Windows machine, the shell integration provides a quick right-click option for combining PDFs without opening Acrobat first.

  1. In Windows Explorer, select the PDF files you want to combine (hold Ctrl to select multiple files).
  2. Right-click the selection and look for Combine files in Acrobat or Combine supported files in Acrobat in the context menu.
  3. Acrobat will open and launch the Combine Files dialog with your selected files already loaded.
  4. Reorder if needed and click Combine.

Note that this option may not be present on all Windows configurations — it depends on whether the Acrobat shell extension was installed and is enabled.

What Happens to Bookmarks, Links, and Form Fields

Understanding how existing document structure is handled during a merge is important, particularly for technical or compliance-driven workflows.

Bookmarks

When you use the Combine Files tool, Acrobat creates a top-level bookmark for each source document in the merged result. Existing bookmarks within each source file are preserved and nested beneath that top-level entry. This means that a well-bookmarked source document retains its outline structure in the merged file, though you may want to review and reorganise the resulting bookmark tree — particularly if the source files had inconsistent or redundant bookmark names.

Hyperlinks and Cross-References

Internal links (page-number-based actions) within each source document are generally preserved, though links that reference specific named destinations may need to be checked after merging, as destination names can sometimes conflict when documents from different sources are combined. External hyperlinks (URL links) are preserved without issue.

Form Fields

Form fields from all source documents are carried into the merged file. However, if two source PDFs contain form fields with the same name, Acrobat will treat them as linked — changing the value of one will change all fields sharing that name. If your source documents contain forms, inspect the merged result carefully and use the Prepare Form tool to rename any conflicting field names.

Merging PDFs with Acrobat JavaScript

For automated or programmatic workflows, Acrobat JavaScript provides the insertPages() method on the Doc object, which inserts pages from one document into another.

// Insert all pages from a source document into the active document
// The source document must already be open in Acrobat
var targetDoc = app.activeDocs[0];  // The document to merge into
var sourceDoc = app.activeDocs[1];  // The document to merge from

targetDoc.insertPages({
  nPage: targetDoc.numPages - 1,  // Insert after the last page (0-based index)
  cPath: sourceDoc.path,
  nStart: 0,                      // First page of source (0-based)
  nEnd: sourceDoc.numPages - 1    // Last page of source
});

To merge a list of files into a single document programmatically, you can iterate over an array of file paths:

// Batch merge multiple files into the active document
var filesToMerge = [
  "/c/reports/section-1.pdf",
  "/c/reports/section-2.pdf",
  "/c/reports/section-3.pdf"
];

var targetDoc = this;
var insertAt = targetDoc.numPages - 1;

for (var i = 0; i < filesToMerge.length; i++) {
  targetDoc.insertPages({
    nPage: insertAt,
    cPath: filesToMerge[i]
  });
  insertAt = targetDoc.numPages - 1;
}

Note that insertPages() requires a trusted execution context when called from within an Action Wizard step or a document-level script in Acrobat's standard security model.

Batch Merging Multiple Files

For workflows requiring frequent merging of the same set of files or folder contents, Acrobat's Action Wizard provides a repeatable, automated solution. Create an action that includes a Combine Files step and configure it to source from a nominated folder. The action can then be run on demand or scheduled.

For more sophisticated batch merging — for example, merging files grouped by filename prefix or metadata value — Acrobat JavaScript within an Action Wizard step gives you full control over which files are combined in which order.

Preserving PDF/A Compliance When Merging

PDF/A is the ISO standard for long-term archival of PDF documents. If your source files are PDF/A-compliant, you need to take care when merging to preserve that compliance in the output.

  • Use the Preflight tool (under Tools > Print Production > Preflight) to verify the compliance level of your source files before merging.
  • When combining PDF/A files, the merged output must also meet all PDF/A requirements: embedded fonts, no encryption, no external references, and appropriate colour profiles.
  • If any source file is not PDF/A-compliant, the merged document will not be compliant either. Convert non-compliant sources first using the Preflight fixup for your target PDF/A level (e.g., PDF/A-2b).
  • After merging, run a Preflight check on the combined document to confirm compliance before archiving.

Managing Bookmarks After Merging

After combining files, the resulting bookmark structure often needs attention — especially in complex documents where the bookmark hierarchy needs to reflect the logical structure of the merged content rather than simply listing source file names.

Mapsoft Bookmarker is an Adobe Acrobat plugin specifically designed to help you create, edit, and manage bookmarks in PDF documents. After merging, Bookmarker lets you batch-rename bookmark entries, restructure the hierarchy, add new bookmarks based on text patterns or heading styles, and export or import bookmark trees — making it an ideal companion tool for any workflow that involves assembling multi-part PDFs from separate source documents.

Manage Bookmarks After Merging PDFs

Mapsoft Bookmarker helps you restructure and perfect the bookmark tree in combined documents. Explore the plugin or get in touch to discuss your workflow.