Log in Sign Up
← Blog
PDF

How to Merge Multiple PDFs Into One Document

8 min read  ·  Updated August 2026

Whether you're assembling a portfolio, combining bank statements for a loan application, packaging a multi-chapter report, or sending a client a single document instead of twelve separate ones — merging PDFs is one of the most common document tasks there is.

Here's everything you need to know to do it correctly, including how to control page order and what to do if you only need certain pages from each source document.

How PDF merging works

Merging PDFs combines their pages into a single document in the order you specify. The original files are not modified — the tool creates a new PDF that contains all the pages. Bookmarks, hyperlinks, and form fields from the source documents are generally preserved in the output.

Unlike file formats such as Word documents, PDFs don't have a "insert file here" feature. All page content is embedded directly in the output file, which means the merged PDF can be opened on any device without needing the original sources.

Step-by-step: merging PDFs on JustConvert

  1. Go to justconvert.in/tools/merge.
  2. Click Select PDF Files or drag multiple PDFs into the drop zone at once. You can add as many files as you need.
  3. The files appear as a list. Drag the rows to reorder them — the merged PDF will follow this order top to bottom.
  4. Click Process to generate the merged file.
  5. Download the result. All source pages are combined in the order you set.

Merging only specific pages

Sometimes you don't want the whole document — just pages 3–7 from one PDF and pages 1–2 from another. JustConvert handles this in two steps:

  1. Use Split PDF to extract the pages you need from each source document, creating smaller single-section PDFs.
  2. Then merge those extracted sections using the Merge tool.

Alternatively, use Remove Pages to delete pages you don't want from a source before merging.

Common use cases

  • Academic submissions — combine a cover page, essay body, and reference list into one submission-ready PDF.
  • Financial documents — merge 12 monthly bank statements into a single annual PDF for loan or visa applications.
  • Client deliverables — package a proposal, appendices, and supporting materials into one professional document.
  • Legal filings — assemble exhibits, correspondence, and cover letters into a single ordered file.
  • Portfolios — combine work samples from different projects into a single presentable document.

Things to check after merging

  • Page numbering — if your source documents have different page numbering styles, the merged PDF will combine them as-is. Use Add Page Numbers after merging if you want uniform sequential numbering.
  • Orientation — if some pages are portrait and others are landscape, they'll merge correctly but the reader will need to rotate. Use Rotate PDF to normalise orientations before merging.
  • File size — the merged file will be roughly the sum of all source files. If the result is too large, run it through Compress PDF afterwards.

Merging PDFs without uploading them anywhere

If the documents are confidential — medical records, signed contracts, anything under an NDA — an offline method is the right call regardless of how a web tool handles files. Every desktop operating system can already do this, and none of the options below need a paid licence.

macOS, using Preview. Open the first PDF, show the sidebar with View → Thumbnails, then drag the second PDF file from Finder directly into the thumbnail pane. Drop it below the last page to append, or between two thumbnails to insert. Then use File → Export as PDF, not Save, because saving writes changes back into the original file rather than producing a new one.

Windows. There is no built-in merge in Windows, which surprises people, because the Microsoft Print to PDF driver only ever prints one document at a time. The practical route is a free tool such as PDFsam Basic, or the command line below.

Command line, any platform. If you merge documents regularly this is the fastest option by a wide margin. With qpdf installed, qpdf --empty --pages a.pdf b.pdf c.pdf -- out.pdf combines three files, and page ranges can be appended to each name, so a.pdf 1-3 takes only the first three pages. It scripts cleanly over a folder of hundreds of files, which no graphical tool does comfortably.

What not to use. Combining PDFs by opening them in Word and pasting is the most common bad workflow. Word rebuilds every page from scratch, so layout shifts, fonts substitute, and any page that came from a scanner is dropped in as a low-resolution image. If the files are already PDFs, keep them as PDFs.

Merging on a phone

Most people assembling documents for an application are doing it on a phone, often from photos they just took. Both mobile platforms can merge without an app.

On iPhone and iPad, put the PDFs in one folder in the Files app, tap Select, choose them in the order you want, then long-press the selection and pick Create PDF. The order of selection is the order of the output, which is easy to get wrong; if the result is out of sequence, redo the selection rather than trying to fix it afterwards.

On Android, there is no system-level merge, but Files by Google will open PDFs and most manufacturers ship a document app that can. The more reliable route on Android is to use a browser-based tool, since it avoids installing something with broad storage permissions for a one-off task. If the source material is photographs rather than PDFs, scan them with the Google Drive scanner first: it deskews, crops, and produces a far smaller file than raw camera images, which matters when a portal caps upload size.

What survives a merge, and what does not

A merged PDF is a new document, and some of what was attached to each source is document-level rather than page-level. Page content itself — text, fonts, vector graphics, images — is copied exactly, so nothing is re-encoded and nothing loses quality.

Bookmarks are document-level. Good merge tools rewrite each source's outline as a branch of the combined document; simpler ones drop them entirely. If the merged file is long enough to need navigation, check the bookmark pane before sending it.

Internal links that point to a page in the same document usually survive and are remapped to the new page numbers. Links pointing at an entirely different file will break, because that file is no longer beside it.

Form fields are the most fragile part. Two source PDFs that each contain a field named "name" cannot both keep it, since field names must be unique within a document, so one gets renamed or flattened. If the entered values matter, fill and save the form first, or flatten it before merging.

Digital signatures are invalidated, always, and this is by design rather than a limitation. A signature certifies the exact bytes of the document it was applied to; adding pages changes those bytes, so the signature can no longer verify. Merge first, then sign the combined document with Sign PDF. Document metadata follows the same document-level rule: the merged file takes one title and author, usually from the first source, so set it deliberately with PDF Metadata if it will be seen.

Getting a merged PDF accepted by an upload portal

Merging is usually the second-to-last step before uploading to a visa application, a university portal, a bank, or a government form — and that is where it most often goes wrong, because the portal has rules the merge tool knows nothing about.

Read the size cap before you merge, not after. Caps of 1 MB, 2 MB, and 5 MB are common on Indian government portals and are far below what a stack of scanned pages produces. Merge everything first and compress once at the end; compressing each file separately and then merging gives a worse result at the same final size, because each pass throws away detail the next pass then has to work around.

Check the page count and the required order. Many portals specify an exact sequence — photo, signature, ID proof, address proof, marksheets — and reject anything else without saying which part failed. Assemble in the stated order, then open the merged file and page through it once before uploading.

Two rules that catch people out. A portal that asks for a "scanned copy" often runs a check that rejects a PDF produced by printing a document to PDF, because it contains selectable text rather than a scan. And a password-protected source cannot be merged at all until it is opened, which is why bank statements — almost always encrypted with a date of birth or account number — need Unlock PDF first. Neither problem is visible until the upload fails.

Which merging method to use

Method Best for Watch out for
Online merge tool Any device, no install, reordering by drag Files leave your device; unsuitable for NDA material
macOS Preview Confidential files, fully offline Save overwrites the original — use Export
qpdf or PDFsam Repeat jobs, hundreds of files, page ranges Needs installing; command syntax to learn
iPhone Files app Documents already on the phone Output order follows selection order
Word or Google Docs Content you still need to edit Reflows layout and degrades scanned pages

Frequently asked questions

Why is my merged PDF in the wrong page order?

The output follows the order the files were added, not their filenames. Alphabetical names like Scan_1, Scan_10, Scan_2 sort in exactly that order in many file pickers, which is the usual cause of a stack of scans coming out shuffled. Drag the rows into the sequence you want before merging, and page through the first page of each section in the finished file.

Does merging a PDF invalidate its digital signature?

Yes, always. A signature certifies the exact bytes of the document it was applied to, so adding pages breaks verification by design rather than by limitation. Merge first, then sign the combined document with Sign PDF.

Do bookmarks and internal links survive a merge?

Page content is copied exactly, so text, fonts, and images are untouched and nothing is re-encoded. Bookmarks are document-level: better tools rewrite each source outline as a branch of the combined document, simpler ones drop them. Internal links to pages in the same document are usually remapped to the new page numbers; links pointing at a separate file break.

Can I merge PDFs without uploading them to a website?

Yes, and for confidential material you should. macOS Preview merges by dragging a PDF into the thumbnail sidebar and then exporting rather than saving. On any platform, qpdf --empty --pages a.pdf b.pdf -- out.pdf combines files from the command line and scripts over hundreds of them.

Why does an upload portal reject my merged PDF?

Three causes account for most rejections: a size cap of 1 to 5 MB, a required document order the portal enforces but does not name in the error message, and a check that rejects a PDF produced by printing to PDF when a genuine scan was asked for. Merge everything first and compress once at the end.

Can I merge a PDF with a Word or image file?

Not directly — merging works on PDFs only. Convert the other file first: export a Word document to PDF, or turn photos into pages with JPG to PDF, then merge the results.

Merge your PDFs now

Free, instant, no signup required.

Merge PDF

Related articles

How to Compress a PDF Without Losing Quality → How to Convert PDF to Word → How to Remove a PDF Password →