Skip to main content
September 29, 2017
Answered

Converting macro-enabled Word file to a PDF

  • September 29, 2017
  • 2 replies
  • 9157 views

I have a macro-enabled Word document, and I use the Create PDF (Add-in) to generate a PDF from the Word file. Will the macros be retained in the PDF that I created? I was told that it will retain all Word properties, including macros.

This topic has been closed for replies.
Correct answer try67

No, they won't. The VBA macros are incompatible with the PDF scripting

language (which uses JavaScript), and are removed when the file is

converted.

On Fri, Sep 29, 2017 at 6:24 PM, linhn96263039 <forums_noreply@adobe.com>

2 replies

Legend
September 30, 2017

The effect of macros is maintained, if they create visible content, in the same way they appear on a printout. But indeed they do not remain live, this is frozen at the time of creation.

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
September 29, 2017

No, they won't. The VBA macros are incompatible with the PDF scripting

language (which uses JavaScript), and are removed when the file is

converted.

On Fri, Sep 29, 2017 at 6:24 PM, linhn96263039 <forums_noreply@adobe.com>

September 29, 2017

Thank you very much for your quick reply. It saved me from implementing a new process based on erroneous information.