I found this working Sub which exports Worksheet in PDF, however how can I change the Location of Export / File and How can i make sure that Page setup is All Row and Column is printed in Landscape and fits into one page?
End Sub
VBA Code:
Sub Extract_PDF()
Dim wb As Workbook
Dim sh As Worksheet
Set wb = ThisWorkbook
For Each sh In wb.Worksheets
sh.Select
pdf_name = sh.Name & ".pdf"
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
Filename:=ActiveWorkbook.Path & pdf_name, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=True
Next
End Sub