Written by Allen Wyatt (last updated July 17, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
As you are programming your macros, you may have a need to know the current page number on which the insertion point is located. This is easily obtained by using either of the following code lines in your macro:
CurPage = Selection.Information(wdActiveEndAdjustedPageNumber) CurPage = Selection.Information(wdActiveEndPageNumber)
This code sets CurPage to the current page number. If you use the form containing wdActiveEndAdjustedPageNumber, then CurPage is a logical page number, not a physical page number. The difference is that logical page numbers take into account manual adjustments that may have been made to the document. For instance, if the user instructed Word to start counting pages at some value other than 1.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13013) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021. You can find a version of this tip for the older menu interface of Word here: Determining the Current Page Number.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
The entire purpose of macros is to allow you to automate repetitive or tedious tasks with relative ease. How easy the ...
Discover MoreThe heart of creating powerful programs in VBA is to understand how to create subroutines. These structures allow you to ...
Discover MoreDo you want to easily jump to the top of a page in your document? You can use the Go To command to make the shift, or you ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments