我正在尝试通过vb代码( excel vba)将excel表格保存为pdf。保存pdf后,我在pdf页面上有一个问号符号。我怎么才能阻止它?我使用了以下代码来保存pdf。
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
"C:\Tracker\MoM.pdf", Quality:=xlQualityStandard, IncludeDocProperties:=True,IgnorePrintAreas:=False, OpenAfterPublish:=True
发布于 2014-02-26 13:02:39
我正在使用下面的代码进行转换,没有任何问题
With ActiveSheet
.ExportAsFixedFormat Type:=xlTypePDF, Filename:=PdfFile, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:=False
End With
https://stackoverflow.com/questions/20090501
复制相似问题