Using VBA how do I call up the Adobe Create PDF function

前端 未结 4 1588
误落风尘
误落风尘 2020-12-09 00:33
  Sheets(\"Key Indicators\").ExportAsFixedFormat Type:=xlTypePDF,
 Filename:=ArchivePath, Quality:=xlQualityStandard,
 IncludeDocProperties:=True, IgnorePrintAreas _         


        
4条回答
  •  一生所求
    2020-12-09 01:16

    Sub PDF()
        ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
            "C:\Users\PCNAME\Documents\Book1.pdf", Quality:=xlQualityStandard, _
            IncludeDocProperties:=True, IgnorePrintAreas:=False, OpenAfterPublish:= _
        True
    End Sub
    

    Please try the above codes

提交回复
热议问题