我正在尝试通过vb代码将excel表格保存为pdf(excel vba)。保存pdf后,我在pdf页面上有问号的符号。我怎么阻止这个? 我使用以下代码保存pdf。
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"C:\Tracker\MoM.pdf", Quality:=xlQualityStandard, IncludeDocProperties:=True,IgnorePrintAreas:=False, OpenAfterPublish:=True
答案 0 :(得分:0)
我正在使用以下代码进行转换,没有任何问题
With ActiveSheet
.ExportAsFixedFormat Type:=xlTypePDF, Filename:=PdfFile, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
End With