分享

VBA之EXCEL打印

 新用户49643053 2020-01-05

活动工作表打印

Sub Print()

       ActiveSheet.PrintOut

End Sub

设置页面

Sub PrintSh()

       With WorkSheets(“Sheet1”)

       设置打印方向

              .PageSetup.Orienttation=xlLandscape

       End With

End Sub

设置第一张工作表的所有页边距

Sub SetPage()

       With Worksheets(1).PageSetup

              .LeftMargin=Application.InchesToPoints(0.5)

              .RightMargin=Application.InchesToPoints(0.75)

              .TopMargin= Application.InchesToPoints(1.5)

.BottomMargin= Application.InchesToPoints(1)

.HeaderMargin= Application.InchesToPoints(0.5)

.FooterMargin= Application.InchesToPoints(0.5)

       End With

End Sub

页眉折行打印

Sub Printer()

       ActiveSheet.PageSetup.CenterHeader=”&””Arial,Bold Italic””&14 期末成绩表” _

              & Chr(13) & Sheets(2).Range(“A1”)

       打印预览

       ActiveWindow.SelectedSheets.PrintPreview

ActiveWindow.SelectedSheets.PrintOut Copies:=1   打印一份文件

End Sub

为工作簿中每个工作表进行设置,设置打印为1-3

Sub Top3LinesPrint()

       Dim wkSheet as WorkSheet

       For Each wkSheet In Application.Worksheets

              With wkSheet.PageSetup

                     .PrintTitleRows=”$1:$3”

              End With

              Sheets(wkSheet.Name).Rows(“1:3”).Font.Bold=True

       Next wkSheet

End Sub

设置工作表标签颜色

ActiveSheet.Tab.ColorIndex=6

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多