我是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
感谢您的所有帮助