Quantcast
Channel: Norazizah
Viewing all articles
Browse latest Browse all 592

Microsoft Excel

$
0
0

 

Macros Print To PDF


Microsoft Excel Macros Print to PDF
VBA Macros Print To PDF

 

 

Private Sub ButtonPrint_Click()
    
    Application.ScreenUpdating = False
    ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
    Filename:="C:\Users\~User~\Documents\norazizah\KalendarPDF.pdf", _
    OpenAfterPublish:=False
    Application.ScreenUpdating = True
      
End Sub


Viewing all articles
Browse latest Browse all 592