I need to get the file location of the PDF after converting from a docx
I got the code below which converts but it doesn't give any info on the PDF location
mydoc.ExportAsFixedFormat _
Outputfilename:=Replace(mydoc.FullName, ".docx", ".pdf"), _
ExportFormat:=wdExportFormatPDF, OpenAfterExport:=True,
OptimizeFor:=wdExportOptimizeForPrint, _
Range:=wdExportAllDocument, Item:=wdExportDocumentContent
I am hoping that after it converts, i can log the PDF location to a cell.
Thanks