ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 请问如何使用宏实现页眉内容给文档重命名

[复制链接]

TA的精华主题

TA的得分主题

发表于 2016-3-21 10:27 | 显示全部楼层 |阅读模式
在本论坛里面检索到一篇将doc文档拆分的帖子,链接如下:
http://club.excelhome.net/thread-1077899-1-1.html

Sub Split()
    Const strFileExtension = ".docx"
    Dim oSection As Section
    Dim strTargetFileName As String
    For Each oSection In ActiveDocument.Sections
        strTargetFileName = Replace(ActiveDocument.FullName, strFileExtension, "_" & oSection.Index & strFileExtension)
        oSection.Range.ExportFragment strTargetFileName, wdFormatDocumentDefault
    Next
    MsgBox "完成!"
End Sub


但是里面拆分后的文档是用章节的序号(oSection.Index)重命名,我想将这里改成以章节的首页页眉重命名,
在查看了官方的帮助之后,用msgbox命令确认了页眉内容的宏写法如下:
oSection.Headers(wdHeaderFooterFirstPage).Range.Text
写完之后的宏为:
Sub Split()
    Const strFileExtension = ".docx"
    Dim oSection As Section
    Dim strTargetFileName As String
    For Each oSection In ActiveDocument.Sections
        strTargetFileName = Replace(ActiveDocument.FullName, strFileExtension, "_" & oSection.Headers(wdHeaderFooterFirstPage).Range.Text & strFileExtension)
        oSection.Range.ExportFragment strTargetFileName, wdFormatDocumentDefault
    Next
    MsgBox "完成!"
End Sub

但是上述宏运行之后出错,提示为上面黄色背景
由于是初学者,不知道如何调试,所以请那位帮我调试一下,谢谢!!

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-3-22 10:12 | 显示全部楼层
这个版块比较冷清啊,那位帮帮忙阿,谢谢

TA的精华主题

TA的得分主题

发表于 2016-3-22 15:03 | 显示全部楼层
这是因为“oSection.Headers(wdHeaderFooterFirstPage).Range.Text ”返回的字符串最后一个字符是回车符,文件名是不允许包含回车符的,所以出错。想办法将最后回车符之前的所有字符提取出来就行了。

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-3-23 11:05 | 显示全部楼层
dafanshu1 发表于 2016-3-22 15:03
这是因为“oSection.Headers(wdHeaderFooterFirstPage).Range.Text ”返回的字符串最后一个字符是回车符, ...

谢谢,已经解决了,
Sub 拆分doc()
Attribute 拆分doc.VB_ProcData.VB_Invoke_Func = "Normal.NewMacros.拆分doc"
'
' 拆分doc 宏
'
'
    Const strFileExtension = ".doc"
    Dim strSectionName
    Dim oSection As Section
    Dim strTargetFileName As String
    For Each oSection In ActiveDocument.Sections
        strSectionName = Replace(oSection.Headers(wdHeaderFooterFirstPage).Range.Text, " ", "")
        strSectionName = Left(strSectionName, Len(strSectionName) - 1)
        strTargetFileName = Replace(ActiveDocument.FullName, strFileExtension, "_" & strSectionName & strFileExtension)      
        oSection.Range.ExportFragment strTargetFileName, wdFormatDocumentDefault
        
    Next
    MsgBox "完成!"
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2025-1-14 20:16 , Processed in 0.020106 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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