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

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


        
4条回答
  •  轮回少年
    2020-12-09 01:09

    With ActiveSheet
        .ExportAsFixedFormat Type:=xlTypePDF, Filename:="N:\JKDJKDJ", _
        Quality:=xlQualityStandard, IncludeDocProperties:=True,  
        IgnorePrintAreas:=False, OpenAfterPublish:=False
    End With
    

提交回复
热议问题