我遇到了这个突然的问题。最近,每当宏要将工作表保存为pdf时,它也会打开我的photoshop程序,但提示错误。
另一方面,它也通过Acrobat Reader DC发布。
我不知道为什么会这样,但这并没有发生。请帮忙。
谢谢。
我的代码很简单:
Sub ExportPDF()
InvoiceTemplate.Activate
InvoiceTemplate.Range("A1:J40").Select
Selection.ExportAsFixedFormat Type:=xlTypePDF, _
Filename:="C:\Users\SFDJKSFJ\Desktop\Business Operation\Sales Invoices" & _
Range("CustomerNameLine").Value & "Invoice No. " & Range("InvoiceNumberLine").Value & _
".pdf", Quality:=xlQualityStandard, IncludeDocProperties:=True, _
IgnorePrintAreas:=False, OpenAfterPublish:=True
ActiveWorkbook.Save
End Sub
谢谢。