VBA宏生成pdf(PC和Mac)

时间:2019-01-09 01:07:51

标签: excel vba macos pdf excel-vba-mac

我有一个简单的代码可以运行,并允许我通过pdf预览文档。它可以在PC上正常运行,但是在使用Mac机器时,我会得到

  

运行时错误:打印时出错。

enter image description here

是否可以更改此代码以适应PC和Mac? (版本2016/365)

以下代码适用于PC:

Sub ViewAsPDF()

    Worksheets("Quote (2)").ExportAsFixedFormat _
            Type:=xlTypePDF, _
            Filename:="Quote" & "_" & Worksheets("Quote (2)").Range("C8") & "_" & Format(Now, "MMDDYYYY_HHMM"), _
            Quality:=xlQualityStandard, IncludeDocProperties:=True, _
            IgnorePrintAreas:=False, OpenAfterPublish:=True

End Sub

0 个答案:

没有答案