How to delete multiple specific pages in a Word document?
Manually deleting pages in Word can be tedious, especially if you’re working with a large document. While selecting and pressing the Delete key works for a single page, removing multiple pages requires more efficient methods. This guide provides three practical solutions for deleting specific pages or a range of pages in Word:
Delete a range of pages with Go To feature
Delete multiple specific pages using Kutools for Word
Delete multiple specific pages with VBA code
Delete a range of pages in a Word document with the Go To feature
If you want to delete a range of consecutive pages from a Word document, the Go To feature can help you complete the task efficiently. Follow the steps below:
- Open the Word document from which you want to delete pages.
- Press F5 to open the Find and Replace dialog box. Enter the starting page number of the range you want to delete, and press Enter.
- Close the Find and Replace dialog box, then press F8 to turn on the Extend mode.
- Press F5 again to reopen the Find and Replace dialog box. This time, enter the ending page number of the range you want to delete, and press Enter. All pages from the starting page to the page before the ending page will be selected.
- Finally, press Delete to remove the selected pages at once.
Note: Press Esc to exit Extend mode.
Delete multiple specific pages using Kutools for Word
If you need to delete multiple specific pages from a large Word document, the Select Pages feature in Kutools for Word allows you to easily select and delete the desired pages. Follow these steps:
- Open the Word document you want to modify, and click Kutools > Select > Pages > Select Pages.
- In the Select Pages dialog box that appears, choose one of the following options:
- Select pages according to range: Specify a page range to select multiple consecutive pages.
- Select pages according to selection: Manually select non-consecutive pages by clicking on them individually.
- Click Ok to select the desired pages. Then, press the Delete key to remove them all at once.
Delete multiple specific pages in a Word document with VBA code
If you need to delete multiple non-consecutive pages from a Word document, the following VBA code can help you achieve this efficiently.
- Hold down Alt + F11 to open the Microsoft Visual Basic for Applications window.
- Click Insert > Module, and paste the following VBA code into the Module window:
Sub DeletePagesInDoc() Dim xRange As Range Dim xPage As String Dim xDoc As Document Dim xArr Dim I, xSplitCount As Long Application.ScreenUpdating = False Set xDoc = ActiveDocument xPage = InputBox("Enter the page numbers of pages to be deleted: " & vbNewLine & _ "use comma to separate numbers", "KuTools for Word", "") xArr = Split(xPage, ",") xPageCount = UBound(xArr) For I = xPageCount To 0 Step -1 Selection.GoTo wdGoToPage, wdGoToAbsolute, xArr(I) xDoc.Bookmarks("\Page").Range.Delete Next Application.ScreenUpdating = True End Sub
- Press F5 to run the code. A prompt box will appear asking you to enter the page numbers you want to delete. Separate the page numbers with commas. See screenshot:
- Click the OK button, and all the specified pages will be deleted instantly.
Best Office Productivity Tools
Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!
🤖 Kutools AI Features: AI Assistant / Real-Time Assistant / Super Polish (Preserve Format) / Super Translate (Preserve Format) / AI Redaction / AI Proofread...
📘 Document Mastery: Split Pages / Merge Documents / Export Selection in Various Formats (PDF/TXT/DOC/HTML...) / Batch Convert to PDF...
✏ Contents Editing: Batch Find and Replace across Multiple Files / Resize All Pictures / Transpose Table Rows and Columns / Convert Table to Text...
🧹 Effortless Clean: Sweap away Extra Spaces / Section Breaks / Text Boxes / Hyperlinks / For more removing tools, head to the Remove group...
➕ Creative Inserts: Insert Thousand Separators / Check Boxes / Radio Buttons / QR Code / Barcode / Multiple Pictures / Discover more in the Insert group...
🔍 Precision Selections: Pinpoint Specific Pages / Tables / Shapes / Heading Paragraphs / Enhance navigation with more Select features...
⭐ Star Enhancements: Navigate to Any Location / Auto-Insert Repetitive Text / Toggle Between Document Windows / 11 Conversion Tools...
🌍 Supports 40+ Languages: Use Kutools in your preferred language – supports English, Spanish, German, French, Chinese, and 40+ others!

✨ Kutools for Office – One Installation, Five Powerful Tools!
Includes Office Tab Pro · Kutools for Excel · Kutools for Outlook · Kutools for Word · Kutools for PowerPoint
📦 Get all 5 tools in one suite | 🔗 Seamless integration with Microsoft Office | ⚡ Save time and boost productivity instantly
Best Office Productivity Tools
Kutools for Word - 100+ Tools for Word
- 🤖 Kutools AI Features: AI Assistant / Real-Time Assistant / Super Polish / Super Translate / AI Redaction / AI Proofread
- 📘 Document Mastery: Split Pages / Merge Documents / Batch Convert to PDF
- ✏ Contents Editing: Batch Find and Replace / Resize All Pictures
- 🧹 Effortless Clean: Remove Extra Spaces / Remove Section Breaks
- ➕ Creative Inserts: Insert Thousand Separators / Insert Check Boxes / Create QR Codes
- 🌍 Supports 40+ Languages: Kutools speaks your language – 40+ languages supported!