PDF vs DOCX: When to Use Which Format
PDF and DOCX are both "document files" in the same loose sense that a road bike and a mountain bike are both "bicycles". They look interchangeable until you try to use one for the other's job. Here is the practical version of when each one wins, and the rules of thumb that experienced document users settle into.

The fundamental difference in one sentence
DOCX is a description of how a document could be laid out; PDF is a description of how a document has been laid out. DOCX hands instructions to a layout engine — Word, Google Docs, LibreOffice — and lets it pick fonts, line breaks and pagination based on the user's environment. PDF locks all those decisions in once and for all. That single distinction explains nearly every other difference between the two formats.
What DOCX is for
DOCX is the format you want when the document is still under construction. It is editable, it tracks changes, it supports comments, it is what your reviewers can mark up, and it is what the next person in the chain expects to receive when they need to make changes. The downside is that it is also fragile — it depends on the recipient having compatible software, the same fonts installed, the same locale settings, and so on. Two people opening the same DOCX in slightly different versions of Word can see slightly different page breaks. For collaboration, that is fine. For final delivery, it is a problem.
What PDF is for
PDF is the format you want when the document is finished. The promise of a PDF is "what I see is exactly what you will see, regardless of your operating system, software version or installed fonts". That promise is kept by embedding the fonts inside the file, freezing the page layout, and treating the document as an image of itself. The cost is that the file is no longer easily editable in the way DOCX is. You can mark up a PDF, you can fill its forms, you can comment on it, but you cannot reflow a paragraph the way you would in Word.
Use DOCX when…
You are still drafting; you expect feedback that requires editing; you collaborate with one or more people who will make changes; the recipient explicitly asks for the source file.
Use PDF when…
You are sending a final version; the recipient must see it exactly as you laid it out; you want fonts and layout to be guaranteed; you are uploading to a system that requires a fixed-format file (job applications, tax filings, legal submissions).
Use both when…
You are publishing a document that some readers will print and others will edit. Common with templates: ship the DOCX as the source, and a PDF preview alongside it.
The accidental conversions that go wrong
Most "PDF is broken" complaints actually come from people trying to use PDFs for jobs DOCX is meant for. The classic example: someone receives a PDF resume, opens it in Word, makes a small edit, and saves it back as PDF. Word's PDF import is best-effort — it tries to reconstruct paragraph styles, table boundaries and column layouts from a file that no longer has any of those concepts. The result usually looks similar but is structurally a mess: paragraphs become text boxes, lists become individual lines, hyperlinks vanish.
The lesson is that PDF is a one-way street for layout fidelity. If you anticipate the document will need editing, keep the DOCX version. If you only have the PDF, accept that significant edits will require either a dedicated PDF editor (which manipulates the PDF objects directly) or treating the import as a starting point for a clean rewrite.
Things only PDF can do well
A handful of capabilities are PDF's home turf, and DOCX simply does not compete:
- Digital signatures with byte-level integrity. A PDF signature is a hash of the entire file. Any modification invalidates it. DOCX has signing, but the verification story is not as universally supported.
- Reliable form-fill. PDF forms work the same way in every PDF reader. DOCX forms work in Word; everywhere else they look like decorations.
- Encryption with both viewing and editing passwords. PDF supports separate "user password" (to open) and "owner password" (to print, copy, edit). DOCX has document protection but at a coarser granularity.
- Print-ready submission. Print shops, tax authorities and government portals overwhelmingly want PDFs because of the "what I see is what you see" guarantee.
- Long-term archival. The PDF/A subset is specifically designed for documents you need to be able to open in 50 years.
Things only DOCX can do well
The flip side is just as clear:
- Real collaborative editing. Track changes, comments, suggestions — Word, Google Docs and LibreOffice all handle DOCX natively as their interchange format.
- Reflow when the page size changes. Open a DOCX on a phone, on a wide monitor, in a print preview — the layout adjusts. PDFs have a fixed page size.
- Fast structural edits. Click into a paragraph, retype it, save. With PDFs, the same operation requires a specialised editor and is significantly more fragile.
- Style-driven design. DOCX styles propagate visual changes through the whole document instantly. PDF has no equivalent.
The practical workflow most professionals use
The pattern that works in nearly every office setting is straightforward: edit in DOCX, deliver in PDF. The DOCX version stays in your file system or your team's shared drive. Every time you need to send a copy externally, you export a fresh PDF. The recipient gets a frozen artefact they cannot accidentally damage; you keep the editable source for the next round of changes.
The corollary is that you should be sceptical of any workflow that asks you to round-trip between the two. "Convert this PDF to Word, fix it, convert it back to PDF" is almost always a sign that the source DOCX has been lost or was never shared. The right fix is to ask the original author for the editable file. The right fallback is to rebuild the document cleanly rather than fight the conversion.
What about Markdown, RTF, ODT, HTML?
The PDF-vs-DOCX dichotomy is a useful simplification, but the real format landscape is broader. Markdown excels for lightweight documents that will be rendered by software (READMEs, blog posts, wikis); it is awful for anything that needs precise layout. RTF is a legacy interchange format you should avoid producing today but might still need to read. ODT is the open-standard equivalent of DOCX and works fine for collaboration in environments that prefer it. HTML is what the web uses and is the most flexible source format if you control the rendering pipeline. Each one has a niche, but for everyday business documents the PDF-or-DOCX choice covers 95% of cases.
The one rule of thumb to remember
If the next person in the chain might need to change something, send DOCX. If the document is finished and the layout matters, send PDF. If you are unsure, send both — the PDF as the artefact and the DOCX as the editable source.
That single rule will steer you correctly through almost every "should I send PDF or Word?" decision you will encounter. The harder questions — "what fonts to embed", "should I use PDF/A", "do I need digital signatures" — are downstream of it.