Splitting a PDF that's bigger than the upload limit
4 min read
An e-filing system's size limit doesn't negotiate. The document has to fit — and the skill is in where you cut it.
Compress first, split second
Try compression before cutting anything. For scanned documents especially, compression alone often gets under the limit — and then there's nothing to split at all.
Move to splitting when compression falls short. Doing it in the other order means compressing every piece separately: the same work, multiplied.
Cut at content boundaries
Halving a file mechanically by size can cut through a chapter, or worse, a table — forcing the reader to juggle two files. Open the table of contents, note the page numbers where chapters end, and split on those ranges.
If chapters 1–3 span pages 1–58 and chapters 4–6 span 59–120, you specify “1-58” and “59-120”. With a splitting tool that accepts page ranges, it's a few seconds of work.
The piece names are half the job
Name each piece with its position in the set and its content range: “BusinessPlan_1of3_Chapters1-3.pdf”. The receiving side can neither confuse the order nor miss a piece silently.
If the filing system has multiple upload slots, note which piece went into which slot. It saves you the deadline-minute panic of “did I upload part 2?”.
Close the loop for the recipient
Where possible, state the full structure in one line — in the mail body or the form's remarks field: “3 files total — 1: main text / 2: appendix / 3: supporting docs”.
And keep the unsplit original. “Can you send the whole thing as one file after all?” comes more often than you'd think, and with the original kept, the answer is one attachment away.