I got a template with button to convert excel to PDF and save it to specific location. Also, it will move my excel file to new location and kill the old file. I am open to a better approach to do so or any suggestion to improve this.
Private Sub PDF_Click()
Dim strFilename As String
Dim rngRange As Range
Set rngRange = Worksheets("MRO").Range("C6")
strFilename = rngRange.Value & Format(Now(), " mm-dd-yyyy hh_mm AM/PM")
Sheets(Array("MRO")).Select
Sheets("MRO").Activate
ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, fileName:= _
"\\*change this to your path*\" & strFilename & ".pdf" _
, Quality:=xlQualityStandard, IncludeDocProperties:=True, IgnorePrintAreas _
:=False, OpenAfterPublish:=False
Path = "\\*change this to your path*\"
Dim thisWb As Workbook
Set thisWb = ActiveWorkbook
MyOldName = ActiveWorkbook.FullName
MyNewName = ActiveWorkbook.Name
ActiveWorkbook.SaveAs fileName:=Path & "\" & MyNewName
Kill MyOldName
ActiveWorkbook.Close
End Sub