シナリオ:私の Excel ファイルには約 120 枚のシートがあります。1枚につき1ページ使用しました。ページのサイズはA6です。したがって、ワークブック全体で 120 ページの A6 ページがあります。
私がしなければならないこと:ワークブック全体のすべての A6 シートを含む、A6 ページ サイズの 1 枚のシートを作成したいと考えています。次に、A4 サイズのページに印刷する必要があります (1 枚あたり 4 x A6 ページ)。
問題:次のコードは、すべてのシートを 1 つのシートにまとめます。しかし問題は、A6 ページを「レター」サイズのページに集めることです。そのため、印刷プレビューをクリックすると、A4 シート 1 枚に 20 枚の小さなページが表示されます。A4 を選択すると、1 シートに 4 ページしか表示されません (A4 =4 X A6 であるため)。しかし、なぜこれが 20 ページを表示しているのか。4 ページではなく、A4 に非常に小さい 20 ページを印刷します。これはプリンターの設定やページ設定の問題ではなく、そのようなシートを生成するコード自体です。
Private Sub CommandButton1_Click()
Dim wshTemp As Worksheet, wsh As Worksheet
Dim rngArr() As Range, c As Range
Dim i As Integer
Dim j As Integer
ReDim rngArr(1 To 1)
For Each wsh In ActiveWorkbook.Worksheets
i = i + 1
If i > 1 Then ' resize array
ReDim Preserve rngArr(1 To i)
End If
On Error Resume Next
Set c = wsh.Cells.SpecialCells(xlCellTypeLastCell)
If Err = 0 Then
On Error GoTo 0
'Prevent empty rows
Do While Application.CountA(c.EntireRow) = 0 _
And c.EntireRow.Row > 1
Set c = c.Offset(-1, 0)
Loop
Set rngArr(i) = wsh.Range(wsh.Range("A1"), c)
End If
Next wsh
'Add temp.Worksheet
Set wshTemp = Sheets.Add(after:=Worksheets(Worksheets.Count))
On Error Resume Next
With wshTemp
For i = 1 To UBound(rngArr)
If i = 1 Then
Set c = .Range("A1")
Else
Set c = _
ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell)
Set c = c.Offset(2, 0).End(xlToLeft) 'Skip one row
End If
'Copy-paste range (prevent empty range)
If Application.CountA(rngArr(i)) > 0 Then
rngArr(i).Copy c
End If
Next i
End With
On Error GoTo 0
Application.CutCopyMode = False ' prevent marquies
With ActiveSheet.PageSetup 'Fit to 1 page
.Zoom = False
.FitToPagesWide = 1
.FitToPagesTall = 1
End With
'Preview New Sheet
ActiveWindow.SelectedSheets.PrintPreview
'Print Desired Number of Copies
i = InputBox("Print how many copies?", "ExcelTips", 1)
If IsNumeric(i) Then
If i > 0 Then
ActiveSheet.PrintOut Copies:=i
End If
End If
'Delete temp.Worksheet?
If MsgBox("Delete the temporary worksheet?", _
vbYesNo, "ExcelTips") = vbYes Then
Application.DisplayAlerts = False
wshTemp.Delete
Application.DisplayAlerts = True
End If
End Sub