Ping results save as PDF
Export as PDF function
Sub Export_as_PDF()
'Create and assign variables Dim saveLocation As String Dim fileName As String
fileName = "Ping_results_" + Format(Now, "yyyy_MM_dd_HH_mm_ss_ms") + ".pdf"
saveLocation = ActiveWorkbook.Path + "\" + fileName
'Save selected Range as PDF ' Quality - xlQualityMinimum / xlQualityStandard ActiveSheet.Range("A1:C25").ExportAsFixedFormat Type:=xlTypePDF, _ fileName:=saveLocation, _ OpenAfterPublish:=True, _ IncludeDocProperties:=True, _ IgnorePrintAreas:=False, _ Quality:=xlQualityStandard, _ From:=1, _ To:=1
End Sub