Page range mistakes are usually quiet ones — the tool doesn't crash or throw an obvious error, it just produces a file with the wrong pages in it, which isn't always noticed until later. Knowing the handful of ways this typically goes wrong makes it much easier to catch a mistake before it causes a real problem.
Confusing printed page numbers with actual file position
This is by far the most common mistake: a document's printed page number (shown at the bottom of the page itself) frequently doesn't match its actual position in the file, because of unnumbered front matter like a cover page or table of contents. Requesting "page 10" based on what's printed on a page can actually extract a completely different page if the file's internal numbering has shifted due to earlier unnumbered pages.
Off-by-one errors at range boundaries
Miscounting by a single page at either end of a range — requesting "5-10" when you actually meant "6-10" or "5-11" — is an easy slip, especially when working quickly. This is exactly why a quick review of the extracted result, checking that it starts and ends where intended, is worth doing every time rather than only for unusually important extractions.
Reversing a range's start and end
Writing "10-5" instead of "5-10" typically produces either an error or an empty result, since most tools expect the smaller number first. This is a simple typo more than a conceptual mistake, but it's worth double-checking the direction of a range before running it, especially when working from a handwritten or verbally communicated page reference where a transcription slip is easy to make.
Forgetting that a document might have grown or shrunk since you last checked
If a document has been edited since you last noted its page numbers — pages added or removed — a previously correct range can now point to entirely different content. Reconfirming the current page count and the specific pages you need immediately before extracting, rather than relying on a note made days or weeks earlier, avoids this quiet but genuine source of error.
Not verifying the result before relying on it
The single habit that catches nearly every mistake covered here is the same: open the extracted file immediately after creating it and confirm it actually contains what you intended, rather than assuming the range was correct and moving on. This takes moments and is far cheaper than discovering the mistake after the file has already been sent, submitted, or filed somewhere.
Try the Split & Extract tool yourself — free, instant, nothing uploaded.
Open the toolFrequently asked questions
Why did I get different pages than expected even though my range looked right?
The most common cause is confusing a document's printed page numbers with its actual file position, since unnumbered front matter like a cover page can shift everything by one or more pages relative to what's printed.
What happens if I write a range backward, like "10-5" instead of "5-10"?
Most tools either reject this as invalid or return an empty result, since they expect the smaller number to come first in a range — it's generally worth treating this as a typo to fix rather than assuming the tool will interpret it correctly either way.
Is it worth double-checking a page range even for a document I've extracted from before?
Yes, especially if any time has passed or the document might have been edited since you last checked its page numbers, since added or removed pages can silently shift what a previously correct range now actually points to.
Is it worth writing down page numbers as soon as I find them, rather than trying to remember them?
Yes, this is a simple habit that prevents several of the mistakes covered here at once, since a written note doesn't shift or get miscounted the way a memory of "around page 10 or so" can. Treating that check as a mandatory last step, not an optional one reserved for important documents, is what actually prevents these mistakes from happening in practice over time. Building this kind of careful, consistent checking into a personal workflow, rather than relying on remembering to do it only when a document feels especially important, is ultimately what separates someone who rarely makes these mistakes from someone who runs into them repeatedly, often without ever quite realizing why the same small error keeps happening.