ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1009|回复: 7

[求助] 急!word2016页码的问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2020-8-27 21:54 | 显示全部楼层 |阅读模式
各位大侠好,有一份招标文件,在这份招标文件的基础上增减内容生成投标文件后,插入页码,因为有很多页,但是有的页显示页码,有的不显示,很没有规律,有什么办法清除一下,再插入页码吗?因为涉及的是标书,就不上传文件了,谢谢!

TA的精华主题

TA的得分主题

发表于 2020-8-27 22:20 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
清理页脚,重新插入页码

TA的精华主题

TA的得分主题

 楼主| 发表于 2020-8-28 09:16 | 显示全部楼层
kuangben8 发表于 2020-8-27 22:20
清理页脚,重新插入页码

非常感谢您的回复,如何清除页脚,因为有的页码位置是空的,页脚位置也是空的,谢谢!

TA的精华主题

TA的得分主题

发表于 2020-8-29 15:14 | 显示全部楼层
清理页脚,里面可能有分节,重新链接。

TA的精华主题

TA的得分主题

发表于 2020-8-29 17:47 | 显示全部楼层
删除原页脚后重新插入页码
========
Sub dm555()
    Rem 批量清除原页脚
    For Each oSec In ActiveDocument.Sections
        With oSec.Footers(wdHeaderFooterPrimary)
            .Range.Select
            Selection.Delete
        End With
    Next
    Rem 页脚链接到前一节
    For Each oSec In ActiveDocument.Sections
        oSec.Footers(wdHeaderFooterPrimary).LinkToPrevious = True
    Next
    ActiveDocument.ActiveWindow.View = wdPrintView
    ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
    ActiveDocument.ActiveWindow.View = wdPrintView
    Rem 插入页码
    With ActiveWindow.ActivePane.View
        .SeekView = wdSeekCurrentPageFooter
        With Selection
            .Expand wdStory
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .Fields.Add .Range, wdFieldPage
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .WholeStory
            .Font.Name = "Times New Roman"
        End With
        .SeekView = wdSeekMainDocument
    End With
End Sub


评分

2

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2020-9-3 18:43 | 显示全部楼层
cuanju 发表于 2020-8-29 17:47
删除原页脚后重新插入页码
========
Sub dm555()

都太厉害了

TA的精华主题

TA的得分主题

发表于 2020-12-22 09:17 | 显示全部楼层
cuanju 发表于 2020-8-29 17:47
删除原页脚后重新插入页码
========
Sub dm555()

Sub 复杂文档删除原页脚并插入页码()
    Application.ScreenUpdating = False
    Rem 批量清除原页脚
    For Each oSec In ActiveDocument.Sections
        With oSec.Footers(wdHeaderFooterPrimary)
            .Range.Select
            Selection.Delete
        End With
    Next
    Rem 页脚链接到前一节
    For Each oSec In ActiveDocument.Sections
        oSec.Footers(wdHeaderFooterPrimary).LinkToPrevious = True
    Next
    ActiveDocument.ActiveWindow.View = wdPrintView
    ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
    ActiveDocument.ActiveWindow.View = wdPrintView
    Rem 插入页码
    With ActiveWindow.ActivePane.View
        .SeekView = wdSeekCurrentPageFooter
        With Selection
            .Expand wdStory
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .Fields.Add .Range, wdFieldPage
            .ParagraphFormat.Alignment = wdAlignParagraphCenter
            .WholeStory
            .Font.Name = "Times New Roman"
        End With
        .SeekView = wdSeekMainDocument
    End With
    Rem 页码续前节
    For Each oSec In ActiveDocument.Sections
        With oSec.Footers(wdHeaderFooterPrimary).PageNumbers
            .RestartNumberingAtSection = False
        End With
    Next
    Application.ScreenUpdating = True
End Sub

TA的精华主题

TA的得分主题

发表于 2020-12-22 10:22 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
cuanju 老师 厉害!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-27 19:44 , Processed in 0.031376 second(s), 13 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表