我正在尝试制作一个仅将特定区域导出为 PDF 的宏。我的工作簿中有多个工作表,但我不能将 SaveAs 与 xlSelection 一起使用,因为该参数存在错误,它将整个工作簿导出为 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
如果有我可以尝试的解决方案,请告诉我。