To update on new Automation Techniques using Excel,Ms Access, SQL Server, Power BI and ASP.Net
Wednesday, August 7, 2013
Convert Excel File To PDF
Sub Excel2PDFConverter()
With Application.FileDialog(msoFileDialogFolderPicker)
.Show
Path = .SelectedItems(1)
End With
ActiveWorkbook.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Path & "\" & "exceltopdf"
End Sub
No comments:
Post a Comment