📄 How to Make Only One Page Landscape in Microsoft Word – A Pro’s Guide

🛠️ By Qwen, Senior IT Specialist
📅 Last Updated: June 16, 2025

Sometimes you need just one page in your Word document to be in landscape orientation, while the rest stays in portrait — especially for wide tables, charts, or diagrams.

But if you’re not familiar with how section breaks work in Word, this can get tricky fast.

In this guide, I’ll show you:

  • 🧩 The correct step-by-step method to change only one page to landscape
  • 🛠️ Tips for managing section breaks without messing up your layout
  • ❌ Common mistakes and how to avoid them
  • ✅ My expert tips for working with mixed orientations in long documents

Let’s get started!


⚠️ Why You Can’t Just Change a Single Page Orientation

Microsoft Word doesn’t allow changing the orientation of just one page directly. Instead, Word works with sections — each section can have its own page orientation, headers/footers, margins, and columns.

So, to make just one page landscape, you must:

  1. Create a new section around that page
  2. Apply landscape orientation only to that section
  3. Ensure other sections remain in portrait

🧩 Step-by-Step: Make One Page Landscape in Word

✅ Prerequisites:

  • A multi-page Word document
  • The page you want landscape is already inserted or identified

🔹 Step 1: Insert Section Break Before

  1. Place your cursor at the beginning of the page you want to make landscape.
  2. Go to the Layout tab
  3. Click Breaks > Section Breaks > Next Page

This creates a new section starting at your selected page.


🔹 Step 2: Insert Section Break After

  1. Now place your cursor at the end of the same page (after the last paragraph).
  2. Again, go to Layout > Breaks > Section Break > Next Page

This ends the landscape section and starts a new one (back to portrait).


🔹 Step 3: Change Page Orientation to Landscape

  1. Click anywhere inside the middle section (the one you want landscape)
  2. Go to Layout tab
  3. In the Page Setup group, click the small arrow (bottom-right corner)
  4. In the dialog box:
  • Under Orientation, select Landscape
  1. Click OK

🔹 Step 4: Link to Previous (Optional)

If your document uses headers or footers, Word may now show blank ones on your landscape page.

To fix:

  1. Double-click the header/footer area of the landscape page
  2. In the Header & Footer Tools Design tab, uncheck “Link to Previous”
  3. Reconnect or retype any headers/footers if needed

Repeat this for both header and footer if necessary.


🗑️ Bonus: Clean Up Section Breaks (Optional)

After formatting is done, you can optionally delete unnecessary section breaks:

  1. Go to Home tab > Show/Hide Editing Marks (¶) — this shows all section breaks
  2. Look for Next Page section breaks before and after your landscape page
  3. Delete any extra breaks that aren’t needed (be careful not to remove the ones wrapping the landscape section)

📊 Summary Table

StepActionPurpose
1Insert Next Page break before target pageStart new section
2Insert Next Page break after target pageEnd section cleanly
3Set middle section to LandscapeApply desired orientation
4Unlink Headers/Footers (if needed)Maintain consistent headers

🧠 Expert Tips from an IT Professional

As someone who builds complex templates and reports in Word for enterprise use, here are my top recommendations:

✅ Tip 1: Use “Continuous” Section Breaks for Tighter Control

Instead of “Next Page”, use Section Break > Continuous when placing section breaks within a single page.

This avoids unwanted page jumps but requires more precise placement.

✅ Tip 2: Use Print Layout View

Always work in Print Layout view (View > Print Layout) when adjusting page orientation — it gives you a real preview of how your document will look.

✅ Tip 3: Avoid Using “Different First Page” with Mixed Sections

Using this option can cause unexpected behavior if combined with multiple section breaks. If needed, apply carefully and unlink headers/footers as described above.

✅ Tip 4: Use Section Breaks for Other Formatting Too

You can also vary:

  • Margins
  • Number of columns
  • Headers/footers
  • Page numbers per section

This makes section breaks a powerful tool beyond just orientation changes.


❌ Common Mistakes to Avoid

MistakeConsequenceFix
Forgetting to add section breaksWhole document becomes landscapeAdd breaks before and after
Accidentally deleting a section breakFormatting lostRestore from backup or re-insert breaks
Not unlinking headers/footersBlank or incorrect headersUncheck “Link to Previous”
Trying to rotate text instead of pageMisaligned contentUse page orientation, not text rotation

📁 Bonus: VBA Macro to Automate It (For Advanced Users)

If you do this often, automate it with a macro:

Sub MakeOnePageLandscape()
    Dim rng As Range
    Set rng = Selection.Range

    ' Insert section breaks
    rng.Collapse Direction:=wdCollapseStart
    rng.InsertBreak Type:=wdSectionBreakNextPage

    rng.Collapse Direction:=wdCollapseEnd
    rng.InsertBreak Type:=wdSectionBreakNextPage

    ' Apply landscape orientation
    With rng.Sections(1).PageSetup
        .Orientation = wdOrientLandscape
    End With
End Sub

Select the content of the page you want landscape before running this macro.


✅ Final Thoughts – From an IT Expert

Changing just one page to landscape in Word isn’t hard once you understand how section breaks work. But without proper handling, it’s easy to end up with messed-up formatting, missing headers, or unintended pagination.

Use these techniques to maintain full control over your document layout — whether you’re preparing a report, creating a form, or inserting a large chart.

🔧 Pro Tip: Save your properly formatted document as a template (.dotx) so you can reuse it later without redoing all the steps.

📌 Need help creating a reusable Word template with multiple orientation pages? Or automating layout changes across hundreds of documents? Let me know!
💬 Stay organized. Stay professional.

Leave a Reply

Your email address will not be published. Required fields are marked *