Re: Convert SharePoint Word Doc to PDF
Hi @Anonymous,
Could you share a screenshot of your Flow configuration?
I have made a test on my side and the flow works well. Please take a try with the following workaround:
Use Condition to determine the file type and see if its filename with extension ends with ".doc/.docx".
If yes, get the file content, convert the file format with OneDrive-Convert file action, and create a new file with Create file.
Finally, consider deleting the transition file created in OneDrive.
Image reference:
Expression:
or(endsWith(triggerBody()?['{FilenameWithExtension}'],'.doc'),endsWith(triggerBody()?['{FilenameWithExtension}'],'.docx'))


Please take a try.
Best Regards,
Barry