显示列号(Microsoft Word)
Deena的文档格式设置为使用三列。她想要一种自动显示和打印每列顶部的列号的方法。因此,第1页上的列编号为1到3,第2页上的列编号为4到6,依此类推。
无法自动执行此操作,但是一种解决方法是创建一个宏,该宏将在页面标题中打印带有列号的文档。您需要做的就是确保标题的制表位设置为与您希望列号显示的位置匹配。
Sub ColumnHeaders() Dim p As Long Dim tp As Long Dim c As Integer Dim tc As Integer Dim h As String Dim ch As String ' Get total pages tp = ActiveDocument.Content.ComputeStatistics(wdStatisticPages) ' Get number of columns tc = ActiveDocument.Sections(1).PageSetup.TextColumns.Count ' Save current header ch = ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Text For p = 1 To tp h = "" For c = 1 To tc h = h & Trim(Str(p + (c - 1) + (2 * p - 2))) & vbTab Next c h = Left(h, Len(h) - 1) ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Text = h ActiveDocument.PrintOut Range:=wdPrintFromTo, _ From:=Trim(Str(p)), To:=Trim(Str(p)) Next p If Len(ch) > 1 Then ' Restore previous header ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Text = ch Else ' There is no previous header ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary).Range.Delete End If End Sub
宏实际上单独打印出文档的每一页。假定文档中只有一个部分。确定该单个部分的列数,然后使用此计数将每个页面的标题放在一起。标题由以制表符分隔的列号组成。为每页构造标题,然后打印每页。
注意:
如果您想知道如何使用此页面(或_WordTips_网站上的任何其他页面)上描述的宏,我准备了一个包含有用信息的特殊页面。
链接:/ wordribbon-WordTipsMacros [点击此处在新的浏览器标签中打开该特殊页面]。
_WordTips_是您进行经济有效的Microsoft Word培训的来源。
(Microsoft Word是世界上最流行的文字处理软件。)本技巧(12826)适用于Microsoft Word 2007、2010、2013、2016、2019和Office 365中的Word。