最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

【VBA視頻合集】Word VBA教程 Excel VBA教程 WordVBA教

2023-08-02 18:31 作者:我也不懂1111  | 我要投稿

以下代碼看得懂的都看得懂,看不懂的還是看不懂,僅供參考。正常情況下在機(jī)器上是跑不了的,因為引用到了具體數(shù)據(jù),是批量設(shè)置銀行存款日記賬Excel頁面排版并轉(zhuǎn)為PDF文件的示例。

Sub DepositJournal_USD_x_PDF()


??Dim n$, cc$, hc$, at$, h$, PDFName$

??Dim r&, c&

??Dim P$

??n = ActiveSheet.Name

??P = Split(n, "_")(1)

??cc = Application.WorksheetFunction.XLookup(n, _

??Sheets("Idx-x").Range("A:A"), _

??Sheets("Idx-x").Range("B:B"), , , -1)

???

??hc = Application.WorksheetFunction.XLookup(n, _

??Sheets("Idx-x").Range("A:A"), _

??Sheets("Idx-x").Range("C:C"), , , -1)

???

??r = ActiveSheet.UsedRange.Rows.Count

??c = ActiveSheet.UsedRange.Columns.Count

???

??PDFName = ThisWorkbook.Path & "\..\PDF\日記賬\" & hc & ".pdf"

??'PDFName = "E:\BaiduSyncdisk\Work\2023\July\羅仁梁\賬套\百營\明細(xì)賬\PDF\" & hc & ".pdf"

??'Range("F:F,H:H,K:K,O:O,P:P").Delete Shift:=xlToLeft

??'Range("G:G,I:I,L:L,Q:R").Delete Shift:=xlToLeft

??'插入兩行

??Rows("1:2").Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove


??Cells.Select

??With Selection.Interior

????.Pattern = xlNone

????.TintAndShade = 0

????.PatternTintAndShade = 0

??End With

??With Selection.Font

????.ColorIndex = xlAutomatic

????.TintAndShade = 0

??End With

??Selection.Borders(xlDiagonalDown).LineStyle = xlNone

??Selection.Borders(xlDiagonalUp).LineStyle = xlNone

??Selection.Borders(xlEdgeLeft).LineStyle = xlNone

??Selection.Borders(xlEdgeTop).LineStyle = xlNone

??Selection.Borders(xlEdgeBottom).LineStyle = xlNone

??Selection.Borders(xlEdgeRight).LineStyle = xlNone

??Selection.Borders(xlInsideVertical).LineStyle = xlNone

??Selection.Borders(xlInsideHorizontal).LineStyle = xlNone



?'設(shè)置首行次行,其余行行高

??Selection.RowHeight = 25

??Selection.Font.Name = "宋體"

??Selection.Font.Size = 10


??Rows("1:1").Select

??Selection.RowHeight = 42

??Selection.Font.Name = "宋體"

??Selection.Font.Size = 16

??Selection.Font.Bold = True

???

??Rows("2:2").Select

??Selection.RowHeight = 5

???


'縱向居中

??Cells.Select

??With Selection

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

??End With

'E列居中

??Columns("B:B").Select

??With Selection

????.HorizontalAlignment = xlLeft

????.VerticalAlignment = xlCenter

????.WrapText = True

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = False

??End With

???

'標(biāo)題行橫向居中

??Rows("3:4").Select

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = False

??End With

??'方向列橫向居中

??Columns("H:H").Select

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

??End With

??'A1寫入“科目",合并A1:B1

??Range("A1").Select

??ActiveCell.FormulaR1C1 = "科目"

??'Range("A1:B1").Select

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = False

??End With

??'Selection.Merge


??'B1寫入科目內(nèi)容,合并C1:I1

??Range("B1").Select

??ActiveCell.FormulaR1C1 = cc

??Range("B1:K1").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlLeft

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With

???

??Range("D3:E3").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("F3:G3").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("I3:J3").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("A3:A4").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("B3:B4").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("C3:C4").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With


??Range("H3:H4").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With

???

??Range("K3:K4").Select

??Selection.Merge

??With Selection

????.HorizontalAlignment = xlCenter

????.VerticalAlignment = xlCenter

????.WrapText = False

????.Orientation = 0

????.AddIndent = False

????.IndentLevel = 0

????.ShrinkToFit = False

????.ReadingOrder = xlContext

????.MergeCells = True

??End With

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''邊框設(shè)置''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

??Range("A3:K" & (r + 2)).Select

??Selection.Borders(xlDiagonalDown).LineStyle = xlNone

??Selection.Borders(xlDiagonalUp).LineStyle = xlNone

??With Selection.Borders(xlEdgeLeft)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

??With Selection.Borders(xlEdgeTop)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

??With Selection.Borders(xlEdgeBottom)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

??With Selection.Borders(xlEdgeRight)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

??With Selection.Borders(xlInsideVertical)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

??With Selection.Borders(xlInsideHorizontal)

????.LineStyle = xlContinuous

????.ColorIndex = 0

????.TintAndShade = 0

????.Weight = xlThin

??End With

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''列寬設(shè)置''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

??Columns("A:A").ColumnWidth = 15.14

??Columns("B:B").ColumnWidth = 18.57

??Columns("C:C").ColumnWidth = 4.71


??Range("D:G,I:J").Style = "Comma"

??Range("D:G,I:J").ColumnWidth = 16.86

??Columns("K:K").ColumnWidth = 7

??Columns("H:H").ColumnWidth = 10.43



??ActiveWindow.View = xlPageBreakPreview

??ActiveWindow.Zoom = 100

??ActiveSheet.Name = hc

???

??'標(biāo)題頂端行

??With ActiveSheet.PageSetup

????.PrintTitleRows = "$1:$4"

????.PrintTitleColumns = ""

??End With

???

??'打印區(qū)域

??ActiveSheet.PageSetup.PrintArea = "$A$1:$K$" & r + 2

???

??'頁面設(shè)置

??With ActiveSheet.PageSetup

????.LeftHeader = ""

'????.CenterHeader = "&""宋體,加粗""&22現(xiàn)金日記賬"

????.CenterHeader = "&""宋體,加粗""&22銀行存款日記賬"

????.RightHeader = ""

????.LeftFooter = ""

????.CenterFooter = ""

????.RightFooter = "&P/&N"

????.LeftMargin = Application.InchesToPoints(0.748031496062992)

????.RightMargin = Application.InchesToPoints(0.551181102362205)

????.TopMargin = Application.InchesToPoints(0.590551181102362)

????.BottomMargin = Application.InchesToPoints(0.393700787401575)

????.HeaderMargin = Application.InchesToPoints(0.196850393700787)

????.FooterMargin = Application.InchesToPoints(0.196850393700787)

????.PrintHeadings = False

????.PrintGridlines = False

????.PrintComments = xlPrintNoComments

????.CenterHorizontally = False

????.CenterVertically = False

????.Orientation = xlLandscape

????.Draft = False

????.PaperSize = xlPaperA4

????.FirstPageNumber = xlAutomatic

????.Order = xlDownThenOver

????.BlackAndWhite = False

????.Zoom = False

????.FitToPagesWide = 1

????.FitToPagesTall = 9999

????.PrintErrors = xlPrintErrorsDisplayed

????.OddAndEvenPagesHeaderFooter = False

????.DifferentFirstPageHeaderFooter = False

????.ScaleWithDocHeaderFooter = True

????.AlignMarginsHeaderFooter = False

????.EvenPage.LeftHeader.Text = ""

????.EvenPage.CenterHeader.Text = ""

????.EvenPage.RightHeader.Text = ""

????.EvenPage.LeftFooter.Text = ""

????.EvenPage.CenterFooter.Text = ""

????.EvenPage.RightFooter.Text = ""

????.FirstPage.LeftHeader.Text = ""

????.FirstPage.CenterHeader.Text = ""

????.FirstPage.RightHeader.Text = ""

????.FirstPage.LeftFooter.Text = ""

????.FirstPage.CenterFooter.Text = ""

????.FirstPage.RightFooter.Text = ""

??End With

??ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=PDFName, Quality:=xlQualityMinimum, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False

End Sub


【VBA視頻合集】Word VBA教程 Excel VBA教程 WordVBA教的評論 (共 條)

分享到微博請遵守國家法律
丹棱县| 张家川| 通城县| 汾西县| 丰镇市| 河北省| 临颍县| 弥渡县| 瓮安县| 隆昌县| 烟台市| 胶州市| 克什克腾旗| 塔河县| 东阳市| 昔阳县| 岳阳县| 淳化县| 长武县| 平武县| 望谟县| 安多县| 赫章县| 怀远县| 宿迁市| 措勤县| 寿阳县| 健康| 应城市| 林西县| 河北省| 博野县| 宜都市| 长丰县| 成都市| 陆良县| 巫溪县| 布尔津县| 砀山县| 兰考县| 海兴县|