Hi
I am trying to create a macro that picks up the file path that is entered on my Spreadsheet and save it as a PDF with in this File Path along with a specific file name:
The File Path is below - I need it to go to R1\R2\R3 (S:\Finance\F19\03 SEP 2018)
[TABLE="width: 250"]
<tbody>[TR]
[TD][/TD]
[TD]Q[/TD]
[TD]R[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]File Path[/TD]
[TD]S:\Finance[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]FY[/TD]
[TD]F19[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Month[/TD]
[TD]03 SEP 2018[/TD]
[/TR]
</tbody>[/TABLE]
I currently have a Macro to save as PDF below:
How do I incorporate the specific file path with in this macro.
Thanks
I am trying to create a macro that picks up the file path that is entered on my Spreadsheet and save it as a PDF with in this File Path along with a specific file name:
The File Path is below - I need it to go to R1\R2\R3 (S:\Finance\F19\03 SEP 2018)
[TABLE="width: 250"]
<tbody>[TR]
[TD][/TD]
[TD]Q[/TD]
[TD]R[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]File Path[/TD]
[TD]S:\Finance[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]FY[/TD]
[TD]F19[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Month[/TD]
[TD]03 SEP 2018[/TD]
[/TR]
</tbody>[/TABLE]
I currently have a Macro to save as PDF below:
Code:
Sub SavePDF()
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:=Range("J1").Value & " " & Range("K1").Text _
, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas _
:=False, OpenAfterPublish:=False
End Sub
How do I incorporate the specific file path with in this macro.
Thanks