【實例08-間隔行插入分頁符】Excel表格VBA編程實例 代碼分享

Private Sub CommandButton處理_Click()
'判斷工作簿名,工作表名不為空
With ThisWorkbook.Worksheets("操作界面")
? ? ?If Trim(.Cells(2, "C").Value) = "" Or Trim(.Cells(6, "C").Value) = "" Or Trim(.Cells(10, "C").Value) = "" _
? ? ?Or Trim(.Cells(10, "D").Value) = "" Or Trim(.Cells(14, "C").Value) = "" Then
? ? ?MsgBox "參數(shù)不能為空"
? ? ?Exit Sub
? ? ?End If
'On Error GoTo 處理出錯
'定義變量
Dim wbname As String
Dim shname As String
wbname = Trim(.Cells(2, "C").Value)
shname = Trim(.Cells(6, "C").Value)
Dim splitrow As Long
Dim startnum As Long
Dim stopnum As Long
splitrow = Trim(.Cells(14, "C").Value)
startnum = Trim(.Cells(10, "C").Value)
stopnum = Trim(.Cells(10, "D").Value)
End With
'處理表格
With Workbooks(wbname).Worksheets(shname)
Dim i
For i = startnum To stopnum Step splitrow
? ? .HPageBreaks.Add before:=.Cells(i, 1)
Next i
End With
Workbooks(wbname).Save
MsgBox "處理完成"
Workbooks(wbname).Activate
ActiveWindow.WindowState = xlMaximized
Workbooks(wbname).Worksheets(shname).Activate
Workbooks(wbname).Worksheets(shname).Cells(1, 1).Select
Exit Sub
處理出錯:
MsgBox Err.Description
End Sub