如何使VBA为多个页面打印标题栏

时间:2018-06-25 21:22:35

标签: excel vba printing

我是VBA的新手,我正在尝试打印多页电子表格,但是我需要a列,该列标识了要在每页上重复的行。我很确定它已连接到.PrintTitleColumns函数,但无法正常工作。这是我到目前为止尝试过的,没有成功。

Workbooks("xxxx.xlsx").Activate
Application.PrintCommunication = False
With ActiveSheet.PageSetup
    .PrintTitleRows = False
    .PrintTitleColumns = ActiveSheet.Columns("a:a").Address
    .Orientation = xlLandscape

End With
Application.PrintCommunication = True
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

感谢您的所有帮助

0 个答案:

没有答案