ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 用VBA 批量给文档每节设置不同的页眉页脚

[复制链接]

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-1-1 20:41 | 显示全部楼层

不知道怎样修改才合适,请大侠帮我一看。

TA的精华主题

TA的得分主题

发表于 2019-1-1 22:41 | 显示全部楼层
.Range.Text = Left(ActiveDocument.Sections(i).Range.Text, Len(ActiveDocument.Sections(i).Range.Text) - 2)
.Range.Text = replace( .Range.Text ,chr(12),"")

TA的精华主题

TA的得分主题

发表于 2019-1-2 02:10 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
* 魏老师:我又尝试了好久,不知道能不能达到你的要求了。如果未达到,你也可以借鉴一下。
* 请注意:按 Alt + F9 可以反复切换域代码的显示/不显示。
* 每节不同页眉页脚.rar (3.46 KB, 下载次数: 43)

评分

1

查看全部评分

TA的精华主题

TA的得分主题

发表于 2019-1-2 10:06 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Sub qq()
    Dim oDoc As Document
    Set oDoc = Word.ActiveDocument
    Dim oSec As Section
    With oDoc
        '先遍历所有的节对象
        For i = 1 To .Sections.Count
            With .Sections(i)
                If i Mod 2 <> 0 Then
                    sr = Left(.Range.Text, Len(.Range.Text) - 2)
                    .Headers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Headers(wdHeaderFooterPrimary).Range.Text = sr
                    .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Footers(wdHeaderFooterPrimary).Range.Text = sr & "第1页"
                Else
                    .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Footers(wdHeaderFooterPrimary).Range.Text = sr & "第2页"
                End If
            End With
        Next
    End With
End Sub

TA的精华主题

TA的得分主题

发表于 2019-1-2 10:07 | 显示全部楼层
  1. Sub qq()
  2.     Dim oDoc As Document
  3.     Set oDoc = Word.ActiveDocument
  4.     Dim oSec As Section
  5.     With oDoc
  6.         '先遍历所有的节对象
  7.         For i = 1 To .Sections.Count
  8.             With .Sections(i)
  9.                 If i Mod 2 <> 0 Then
  10.                     sr = Left(.Range.Text, Len(.Range.Text) - 2)
  11.                     .Headers(wdHeaderFooterPrimary).LinkToPrevious = False
  12.                     .Headers(wdHeaderFooterPrimary).Range.Text = sr
  13.                     .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
  14.                     .Footers(wdHeaderFooterPrimary).Range.Text = sr & "第1页"
  15.                 Else
  16.                     .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
  17.                     .Footers(wdHeaderFooterPrimary).Range.Text = sr & "第2页"
  18.                 End If
  19.             End With
  20.         Next
  21.     End With
  22. End Sub
复制代码

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-1-2 10:29 | 显示全部楼层
yhs185 发表于 2019-1-1 22:41
.Range.Text = Left(ActiveDocument.Sections(i).Range.Text, Len(ActiveDocument.Sections(i).Range.Text ...

这个页眉中的分节符哪儿来的?

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-1-2 10:30 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
413191246se 发表于 2019-1-2 02:10
* 魏老师:我又尝试了好久,不知道能不能达到你的要求了。如果未达到,你也可以借鉴一下。
* 请注意:按 A ...

谢谢你,再次麻烦你了。

TA的精华主题

TA的得分主题

 楼主| 发表于 2019-1-2 11:44 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册

谢谢你,还有两个问题困惑着我:
1、页眉和页脚中不该出现分页符,这些分页符从何而来?
2、页数显然不能硬性确定为“第一页”、“第二页”,因为可能还有“第三页”、“第四页”……能否使用“域”自动生成呢?
望大侠再次赐教。

TA的精华主题

TA的得分主题

发表于 2019-1-2 14:14 | 显示全部楼层
魏老师:页码用域来生成,我的代码中就是如此啊,我请 魏老师 用 F8 键逐一调试我的代码,用我的示例 demo。

TA的精华主题

TA的得分主题

发表于 2019-1-2 15:36 | 显示全部楼层
Sub 批量插入不同的页眉页脚()
    Dim oDoc As Document
    Set oDoc = Word.ActiveDocument
    Dim oSec As Section, t As String
    With oDoc
        On Error Resume Next
        For i = 1 To .Sections.Count
            With .Sections(i)
                sr = Replace(Left(.Range.Text, Len(.Range.Text) - 2), Chr(12), "")
                If InStr(sr, "[") > 0 Then
                    k = 1: t = sr
                    .Headers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Headers(wdHeaderFooterPrimary).Range.Text = sr
                    .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Footers(wdHeaderFooterPrimary).Range.Text = sr & "第1页"
                Else
                    k = k + 1
                    .Footers(wdHeaderFooterPrimary).LinkToPrevious = False
                    .Footers(wdHeaderFooterPrimary).Range.Text = t & "第" & k & "页"
                End If
            End With
        Next
    End With
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

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

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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