How to use a VBA procedure that deletes the current page in a Word document

您所在的位置:网站首页 方太油烟机客服 How to use a VBA procedure that deletes the current page in a Word document

How to use a VBA procedure that deletes the current page in a Word document

2023-04-22 17:21| 来源: 网络整理| 查看: 265

Account Information Share with Your Friends

How to use a VBA procedure that deletes the current page in a Word document

Image of Susan Harkins by Susan Harkins in Software on September 20, 2021, 12:14 PM PDT How to use a VBA procedure that deletes the current page in a Word document

If you work with long Microsoft Word documents and frequently have to delete pages, you'll appreciate this simple VBA procedure.

Image: BigTunaOnline/Shutterstock Must-read Windows coverage Windows 11 22H2 is here Checklist: Securing Windows 10 systems How to clear the DNS cache on Windows 10 Defend your network with Microsoft outside-in security services

Deleting a page in a Microsoft Word document isn’t difficult, but there’s no quick-click route. You must delete the content and the soft or hard page break. It’s a bit awkward. You probably don’t mind doing so occasionally, but if you have to do this a lot, you might find doing so tedious. In this article, I’ll show you two VBA procedures that will delete the current page. In addition, I’ll show you how to assign a keyboard shortcut to the procedure so you can execute it quickly. Even if you don’t need the procedure, you can learn how to create a keyboard shortcut.

SEE: Windows 10: Lists of vocal commands for speech recognition and dictation (free PDF) (TechRepublic)

I’m using Microsoft 365 on a Windows 10 64-bit system, but you can use earlier versions. Word Online doesn’t support VBA. For your convenience, you can download the demonstration .docm, .doc and .cls files.

How to use the VBA procedure

You might be surprised how short the procedure needed to delete the current page is. It’s only one line, thanks to a system-defined bookmark, Page, which refers to the current page. Listing A shows the simple procedure. (You’ll often see the terms macro and sub procedure used interchangeable, and that’s OK.)

Listing A

Sub DeleteCurrentPage()

‘Run procedure to delete the current page.

‘Keyboard shortcut Alt + d.

ActiveDocument.Bookmarks(“Page”).Range.Delete

End Sub

As mentioned, the Page bookmark is a special reference to the current page. The Range property specifies the page and the Delete method deletes it. If you omit the Range property, the statement returns an error because VBA attempts to delete the Page bookmark; you can’t delete it or modify it because it’s read-only. To delete a bookmark, you would reference it by name and omit the Range property.

The procedure has two limitations:

It won’t delete contiguous pages. If you select multiple contiguous pages, the procedure deletes the first page in the grouping. It won’t delete the last page. It will delete the contents of the last page, but it won’t delete the page, so you won’t want to run this with the last page selected. How to add the procedure

If you’re familiar with VBA, you can probably skip this section and move right on to running the macro to see how it works.

To enter the procedure, press Alt + F11 to open the Visual Basic Editor. In the Project Explorer to the left, select ThisWorkbook so you can run the procedure in any sheet. You can enter the code manually or import the downloadable .cls file. In addition, the macro is in the downloadable .docm and .doc files. If you enter the code manually, don’t paste from this web page. Instead, copy the code into a text editor and then paste that code into the ThisWorkbook module. Doing so will remove any phantom web characters that might otherwise cause errors.

If you are using a ribbon version, be sure to save the workbook as a macro-enabled file. If you’re working in the menu version, you can skip this step. Now, let’s run the procedure and see how it works.

How to run the VBA procedure to delete pages in Word

You can use the Developer tab to execute the procedure, but it takes several clicks. Instead, let’s assign a keyboard shortcut to run it:

Click the Quick Access Toolbar dropdown and choose More Commands. In the left pane, click Customize Ribbon. Click the Customize button (Figure A) to create the shortcut. In the resulting dialog, choose Macros from the Categories list (it’s near the bottom of the list). From the Save Changes In dropdown, choose the active document. Click inside the Press New Shortcut Key control and hold down the Alt key while you press the d key, for a shortcut combination of Alt + D (Figure B). Before you click Assign, always check Currently Assigned To control. In this case, the combination isn’t in use. When the combination is in use, this control will alert you; you’ll have to decide whether to use a different combination or to write over the current assignment. Click Assign, click Close, and then click OK to return to the document.

Figure A

Figure B

Now that you have quick access to the procedure, let’s run it. The demonstration file has five pages, as you can see in Figure C. The header displays page numbers, which will update accordingly when you delete a page. The larger number is actual text, so it’s visually apparent that you really did delete a page. Click on any page but the last one and press Alt + D. As you can see in Figure D, I deleted page 3.

Figure C

Figure D

The procedure in Listing A won’t delete the last page, but it will delete any content on the last page. If you don’t want to have to remember that quirk, you can use Listing B instead. The two integer variables store the current page number and the last page number. When they’re not equal, the current page is deleted. When they’re equal, nothing happens.

Listing B

Sub DeleteCurrentPage()

‘Run procedure to delete the current page.

‘Keyboard shortcut Alt + d.

Dim cur As Integer

Dim last As Integer

cur = Selection.Range.Information(wdActiveEndPageNumber)

last = Selection.Range.Information( _

wdNumberOfPagesInDocument)

‘Compares the current page number and the last page number.

‘When they aren’t equal, delete the current page.

If cur last Then

ActiveDocument.Bookmarks(“Page”).Range.Delete

End If

End Sub

Both procedures are simple and probably have a limited audience. However, if you frequently delete pages, either will be useful.

Microsoft Weekly Newsletter

Be your company's Microsoft insider by reading these Windows and Office tips, tricks, and cheat sheets.

Delivered Mondays and Wednesdays Sign up today Susan Harkins Published:  September 20, 2021, 12:14 PM PDT Modified:  September 20, 2021, 4:17 AM PDT See more Software Also See How to make fewer mistakes and work more efficiently using predictive text in Microsoft 365 (TechRepublic) How to use the many text wrapping options in Microsoft Word (TechRepublic) Windows 11 cheat sheet: Everything you need to know (TechRepublic) Zoom vs. Microsoft Teams, Google Meet, Cisco WebEx and Skype: Choosing the right video-conferencing apps for you (free PDF) (TechRepublic) Checklist: Securing Windows 10 systems (TechRepublic Premium) Must-read coverage: Windows 10 (TechRepublic on Flipboard)


【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3