gpt4 book ai didi

excel - 无效或不合格的引用

转载 作者:行者123 更新时间:2023-12-03 02:10:46 24 4
gpt4 key购买 nike

我需要输入工作表名称吗?我需要在具有相似工作表的多个工作簿中使用此宏,但选项卡名称不同。

Sub pageSetup()
ActiveSheet.pageSetup
.Orientation = xlLandscape
.PaperSize = xlPaperLegal
.FitToPagesWide = 1
.FitToPagesTall = 1
.LeftMargin = Application.InchesToPoints(1#)

End Sub

最佳答案

由于蒂姆没有声明他的答案,您可以使用以下两个选项之一

  • 格式化ActiveSheet
  • 格式化ActiveWorkBook中的所有WorkSheets

ActiveSheet

Sub TimWilliamsPoints()
With ActiveSheet.pageSetup
.Orientation = xlLandscape
.PaperSize = xlPaperLegal
.FitToPagesWide = 1
.FitToPagesTall = 1
.LeftMargin = Application.InchesToPoints(1#)
End With
End Sub

所有工作表

Sub TimWilliamsPoints2()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Sheets
With ws.pageSetup
.Orientation = xlLandscape
.PaperSize = xlPaperLegal
.FitToPagesWide = 1
.FitToPagesTall = 1
.LeftMargin = Application.InchesToPoints(1#)
End With
Next ws
End Sub

关于excel - 无效或不合格的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13828796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com