特定の領域だけをPDFに出力するマクロを作ろうとしています。ワークブックに複数のシートがありますが、xlSelection で SaveAs を使用できません。これは、そのパラメーターにバグがあり、ワークブック全体を PDF にエクスポートするためです。これが私が持っているコードです:
Sub Export()
'
' Export Macro
'
' Keyboard Shortcut: Option+Cmd+p
'
Range("B1:G32").Select
Selection.ExportAsFixedFormat Type:=xlTypePDF, Filename:="~:Desktop:Quote.pdf", Quality:=xlQualityStandard, _
IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=True
End Sub
私が試すことができる解決策があれば教えてください。