Gruppe
Druck
Problem
Wie kann ich über VBA den 1. Bereich einer Mehrfachauswahl im Hoch-, den 2. Im Querformat drucken?
StandardModule: basMain
Sub Drucken()
Dim rngA As Range, rngB As Range
Set rngA = Selection.Areas(1)
Set rngB = Selection.Areas(2)
With ActiveSheet.PageSetup
.PrintArea = rngA.Address
.Orientation = xlPortrait
ActiveSheet.PrintPreview
.PrintArea = rngB.Address
.Orientation = xlLandscape
ActiveSheet.PrintPreview
End With
End Sub