How to merge PDF files, and how to order them so they get read

Merging is easy. Merging well is about ordering, what survives the merge, and why the alphabetical sort in your file browser keeps putting page 10 after page 1.

Most upload forms accept exactly one file. This single design decision is responsible for the majority of PDF merging that happens in the world, and it is rarely explained until you are already halfway through an application with six separate documents on your desktop.

Merging itself is trivial and takes seconds. What separates a document pack that gets processed smoothly from one that comes back with questions is everything around the merge: what order the parts go in, what quietly gets lost, and what to do afterwards.

The mechanics, briefly

Combining PDFs is a structural operation, not a rendering one. Each page is copied across into a new document as a complete object — its text, its embedded fonts, its images, all exactly as they were authored. Nothing is redrawn, so nothing degrades. It is entirely lossless, and it is why merging fifty pages takes about a second even on a modest computer: no pixels are being processed.

The practical consequence is that you can merge freely without worrying about quality. Merge, look at the result, change your mind, merge again in a different order. There is no cumulative cost.

Ordering is the part that actually matters

The most common merging mistake has nothing to do with PDFs. It is that operating systems sort filenames alphabetically, and alphabetical order is not numerical order.

page1.pdf, page2.pdfpage10.pdf sorts as page1, page10, page11, page2. Select them all, merge, and you get a document that runs 1, 10, 11, 2, 3. Everyone hits this once.

The permanent fix is zero-padding: name files page01, page02, page10. Alphabetical and numerical order then coincide, and they stay coincident in every file browser, every email client and every tool you ever use. If you scan documents regularly, adopting this convention once saves you the problem forever.

Beyond that mechanical issue, order your document for the person reading it, which is rarely the order the files landed in your downloads folder.

Put the covering document first. A letter, an application form, a summary — whatever explains what the pack is. A reviewer opening a merged PDF that begins with a bank statement has to work out what they are looking at before they can evaluate it.

Put evidence directly behind the claim it supports. If your letter references a certificate, the certificate should follow immediately, not sit in a block of attachments at the end. Reviewers work through a queue and form impressions quickly; a document that answers questions in the order they arise is treated more generously than one that makes them hunt.

Follow the checklist order if there is one. Many applications specify a sequence — form, ID, proof of address, financial evidence, references. Match it exactly. The person checking has that list in front of them and is ticking items off in order. Making them search is a small tax on their goodwill, and it is entirely avoidable.

What does not survive the merge

Three things are worth knowing about, because none of them is signposted by any merging tool.

Bookmarks disappear. The collapsible outline some PDFs show in a sidebar belongs to the document as a whole rather than to its pages, and there is no unambiguous way to fuse two of them. If your merged document is long and bookmarks matter, you will need to add them afterwards in a full PDF editor.

Form fields stop working. Interactive fields — the boxes you type into on a fillable form — belong to the document level too. If you merge a filled form into a pack, the pages will show your entered values in most viewers, but the fields themselves will not survive intact and some readers will show them empty.

The fix is to flatten the form first. Open it in your PDF reader and print to PDF, which bakes the entered values into the page as ordinary content. Then merge the flattened version. This is worth doing as a matter of routine for any filled form you are sending onward, quite apart from merging, because it also stops the recipient from accidentally changing your answers.

Mixed page sizes are preserved, not normalised. An A4 letter followed by an A3 drawing stays exactly that. This is usually what you want, but it is worth knowing before sending something to a print shop, who may treat a document that changes size midway differently — and charge accordingly.

Why the merged file can be larger than the sum of its parts

Occasionally the arithmetic looks wrong: three files of 1 MB each produce a merged file of 3.4 MB.

The cause is font duplication. Each source PDF embeds the fonts it uses, and a straightforward merge keeps every copy. Three documents produced from the same template embed the same font three times, and all three copies come along.

It is not usually a large effect, and it is easily removed: running the merged file through structural compression consolidates duplicated resources with no change to appearance. Do it once, at the end, rather than compressing the parts before merging — compressing each piece separately costs you quality on every piece and typically produces a larger final file than doing it the other way round.

The order of operations for a document pack

Almost every real merging job is one step in a sequence, and doing the steps in the wrong order creates rework. The reliable sequence:

  1. Convert anything that is not yet a PDF. Photographs and scans become PDF pages via JPG to PDF.
  2. Flatten any filled forms, by printing them to PDF.
  3. Merge the parts in the order the reader needs, using Merge PDF.
  4. Fix the pages — reorder anything that is out of place, rotate sideways scans, delete blanks — with Organise PDF, which shows every page as a thumbnail.
  5. Number the finished document with Add page numbers.
  6. Compress once, at the very end, against the actual size limit.

Steps 1 to 5 are lossless and can be repeated as often as you like. Step 6 is the only one that throws anything away, which is precisely why it goes last: compress the finished artefact, not something you are about to change again.

Numbering deserves its position in that list. Numbering before reordering produces a document whose printed numbers disagree with its actual sequence, which is worse than having no numbers at all, because a reader who trusts them will be actively misled.

Before you send it

Two checks, thirty seconds, and they catch nearly everything.

Open the merged file and scroll through the whole thing. Not skim — scroll. You are looking for pages in the wrong place, a page that appears twice, a sideways scan, and the blank sheets a duplex scanner inserts between single-sided pages. All four are common and all four are invisible until you look.

Check the metadata. A merged document inherits fields from its first source, so it may be carrying a title like scan_0001 and an author field naming whoever set up the computer that produced it. Reading and clearing it takes a moment and occasionally saves real embarrassment.

Then send it — as one file, in the right order, at a size the form will accept.


Merge PDF runs in your browser, so bank statements and identity documents never leave your computer. Drag the arrows to set the order before you press the button.


Tools mentioned in this guide

Free, unlimited, and they run in your browser rather than on a server.

Written by Santosh Khatiwada, an independent developer who builds these tools. Spotted an error, or want something covered? Get in touch.