How to Merge PDF Files Into One Document

6 min read
mergingorganisingworkflow

Expense claims. Mortgage applications. A tender response assembled from six people's contributions. Coursework with an appendix. Almost every situation where a PDF needs merging is one where somebody downstream is going to read it in order and get annoyed if the order is wrong.

The mechanical part takes about fifteen seconds. This guide covers that, and then the parts that actually decide whether the merged file is any good.

Merging PDFs in your browser

  1. 1Open the merge tool

    Go to Merge PDF. Nothing installs and nothing uploads — the PDF engine runs in the page, so your documents stay on your machine.

  2. 2Add every file at once

    Drag them all in together, or use the file picker with Ctrl/Cmd held to multi-select. Adding them in one go is worth it: most browsers hand over files in the order you selected them, which saves reordering later.

  3. 3Put them in the right order

    Drag the tiles until the sequence matches what the reader expects. Cover letter first, then the substance, then appendices. Check the thumbnail of each file rather than trusting the filename — final_v2_REAL.pdf is not a reliable description of anything.

  4. 4Merge and download

    One combined PDF comes back with the pages concatenated in tile order. Open it before you send it — a ten-second scroll catches upside-down scans and duplicated sections.

Getting the order right without going mad

Two-thirds of merge problems are ordering problems, and there is a simple trick that removes most of them: rename your files with a numeric prefix before you start.

  • 01-cover-letter.pdf
  • 02-cv.pdf
  • 03-references.pdf
  • 04-appendix-a.pdf

Use a leading zero so that 10 sorts after 09 instead of after 1. Sort the folder by name, select all, and drag the whole set in — the order is now correct before you have touched the tool. This costs thirty seconds and eliminates the most common cause of having to redo the job.

If the order only turns out to be wrong after merging, you do not need to start over. Rearrange PDF pages lets you move individual pages inside the finished document, which is the right tool when a single page from the middle of one file needs to sit somewhere else.

Merging things that are not PDFs yet

The usual real-world version of this job involves a photo of a receipt, a scan, a Word document and two proper PDFs. Convert first, then merge:

What you haveConvert withNote
Phone photos, screenshots, JPG/PNG scansImages to PDFSet the page size once so the receipts do not each become a different shape
Word, Excel, PowerPoint, ODT, RTF, TXTPDF ConverterContent-preserving conversion — text and structure carry over, exact layout may shift
A web page or online invoiceWebpage to PDFGive it the URL; it renders the live page
Existing PDFs you only want part ofExtract PDF pagesPull out the relevant pages first so the merge stays tidy

What survives a merge, and what does not

A PDF is not just pages — it carries structure alongside them, and a merge has to decide what to do with each piece. Knowing this in advance saves an unpleasant surprise.

Survives cleanly

  • Page content — text, fonts, vector graphics, and images, at their original quality. Merging is not lossy; nothing is re-encoded.
  • Page dimensions and rotation. Each page keeps its own size, which is why a merged file can legitimately contain both A4 and US Letter pages.
  • Embedded images and their resolution. A merge does not compress anything, so the output is roughly the sum of the inputs.

Needs attention

  • Form fields. PDF forms use globally-named fields. Merge two copies of the same form and you get two fields called name, which many viewers will link together so that typing in one fills the other. If the forms are already filled in, flatten them first.
  • Digital signatures. A cryptographic signature covers the exact bytes of the document it signed. Merging changes those bytes, so the signature will be reported as invalid. This is correct behaviour, not a bug — sign after merging, not before.
  • Encryption. An encrypted PDF has to be decrypted before its pages can be copied. Remove the password with Unlock PDF first, merge, then re-protect the result.
  • Bookmarks and outlines. Support varies by tool; some carry the outline tree across, some drop it. Check if the table of contents matters to you.

Drag in as many files as you like, drag them into order, and download one document. Everything happens in your browser.

Merge your PDFs

Finishing touches worth ten seconds

A merged document assembled from different sources usually needs a small amount of tidying before it goes out:

  1. Fix sideways pages. Scans imported in landscape are the single most common defect in merged submissions. Rotate PDF fixes them permanently, rather than the reader having to rotate their view.
  2. Check the size. Merging sums the inputs, so a set of photo-heavy files adds up fast. Compress the result if it is heading over an attachment limit.
  3. Add a signature if one is expected. Sign PDF after the merge, so the signature covers the final document.
  4. Protect it if it is confidential. Protect PDF applies a password and permission restrictions to the finished file.

Frequently asked questions

Is there a limit to how many PDFs I can merge?

There is no artificial cap here — the limit is your browser's memory, since everything is processed locally. Dozens of ordinary documents merge without trouble. Hundreds of large scanned files may be slow on an older machine; merging in two batches solves it.

Will merging reduce the quality of my PDFs?

No. Merging copies page objects across as they are, without re-encoding text or images, so the output is visually identical to the inputs. That is also why the merged file is roughly the sum of the original sizes.

How do I merge PDFs with different page sizes?

Just merge them — PDF supports per-page dimensions, so A4 and Letter pages happily coexist in one file. It only matters if the document will be printed, where mixed sizes can cause scaling. Converting everything to one size beforehand avoids that.

Can I merge PDFs on a phone?

Yes. The tool is a web page, so it works in mobile Safari and Chrome with no app to install. Use the file picker to select documents from Files, iCloud Drive, or Google Drive. Very large files are more likely to hit memory limits on a phone than on a laptop.

How do I merge only some pages from each PDF?

Use [Extract PDF pages](/en/extract-pdf-pages/) on each source to pull out the pages you want, then merge the extracts. Alternatively merge everything and use [Remove PDF pages](/en/remove-pdf-pages/) to delete what you do not need — that is faster when you are keeping most of the content.

Why did my filled-in form go blank after merging?

Form field values live in a document-level structure that a merge cannot always carry across, especially when two documents define fields with the same names. Flatten the form before merging — printing it back to PDF or exporting a flattened copy bakes the values into the page content so they cannot be lost.

More guides