Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在过去的一周里,我一直在为我的工作制作一个带有排序宏的电子表格。我终于完成了编码(98%),我的老板现在告诉我,当它打印时,我需要在电子表格的顶部有一个标题。当我向下移动数据以在第 1 行中添加标题时,我编写的所有代码都出错了。有没有办法在不发生这种情况的情况下添加标题?我是 VBA 的新手,在这个项目上得到了相当多的帮助,所以请忍受我的无知!提前致谢。
您可以使用页眉设置添加标题,而不会影响行本身。
如果您有一个名为 的工作表对象,则可以使用以下属性sheet在代码中设置其标题:PageSetup
sheet
PageSetup
sheet.PageSetup.CenterHeader = "Centered Title"
您还可以像这样控制左右页眉和中心/左/右页脚。
不需要VBA。只需在文档中添加标题即可。转到插入、页眉和页脚。