Shortcut to Save as a PDF

Written by Allen Wyatt (last updated September 15, 2021)
This tip applies to Word 2007, 2010, 2013, and 2016


13

In Mary's office they routinely create PDF files from Word documents. They do this by using Save As and choosing to save the document as a PDF file. This seems rather "click intensive" to Mary, so she wonders if there is a shortcut available, within Word, for saving a document as a PDF file.

There are two ways that you can approach this task. First, you could add a command to Quick Access Toolbar:

  1. Display the Word Options dialog box. (In Word 2007 click the Office button and then click Word Options. In Word 2010 and later versions display the File tab of the ribbon and then click Options.)
  2. Select the Customize option (Word 2007) or Quick Access Toolbar option (Word 2010 and later versions) at the left side of the dialog box.
  3. Using the Choose Commands From drop-down list, choose File Tab. This displays all of the commands that are on the File tab of the ribbon. (See Figure 1.)
  4. Figure 1. Adding a command to the Quick Access Toolbar.

  5. Scroll through the list of available commands and choose Publish As PDF or XPS.
  6. Click the Add button. The command is moved to the list at the right of the dialog box.
  7. Click OK. The new command now appears on the Quick Access Toolbar.

This tool, when clicked, displays a dialog box that looks very much like a Save As dialog box. All you'll need to do is to provide the name you want used for the PDF file and, optionally, pick a folder where you want the file saved.

You can take a similar approach through the use of a macro, if desired. The difference is that this approach actually does display the Save As dialog box.

Sub SaveAsPDF1()
    With Dialogs(wdDialogFileSaveAs)
        .Format = wdExportFormatPDF
        .Show
    End With
End Sub

As with all macros, you can add it to the Quick Access Toolbar or create a shortcut key to invoke it.

Both approaches discussed so far display a dialog box into which you must type a file name and pick a location for the PDF file. If you want to bypass the dialog box completely, a different macro approach may work for you.

Sub SaveAsPDF2()
    Dim sName As String
    Dim sPath As String

    With ActiveDocument
        sName = Left(.Name, InStr(.Name, ".") - 1)
        sName = sName & ".pdf"
        sPath = .Path & "\"

        .ExportAsFixedFormat _
          OutputFileName:=sPath & sName, _
          ExportFormat:=wdExportFormatPDF
    End With
End Sub

This macro figures out the folder for the currently open document and then saves the PDF into that folder using the same name as the document. So, for instance, if you are working on a document called "MyDoc.docx," then this macro will save the PDF as "MyDoc.pdf." No dialog box is displayed; the PDF file is simply created and saved.

If you prefer for your PDF files to be saved in a different folder, all you would need to do is assign the full path to that folder to the sPath variable. As an example, let's say that you want all your PDF files to be saved in a common folder. Just replace this line:

        sPath = .Path & "\"

with a line similar to this one, modified for your desired path:

        sPath = "c:\mypath\pdfs\"

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12240) applies to Microsoft Word 2007, 2010, 2013, and 2016.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Status Bar Icons

Near the center of the status bar Word displays a number of different icons. This tip describes the meaning of each ...

Discover More

Displaying the Print Dialog Box in a Macro

Want to print a document by using a macro? One way is to display the Print dialog box and allow the user to interact with ...

Discover More

Getting Rid of Spaces in Merged Data

When you merge information with a Word document, you may not be completely satisfied with the appearance of some of the ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!

More WordTips (ribbon)

Two Page Numbers per Physical Page

Want to save paper when printing your document? Just print two pages per sheet of paper and you'll get rid of only half ...

Discover More

Printing Reversed Images

Ever need to print the mirror image of your document? This tip explains how to reverse your image so it can be used for ...

Discover More

Printing Odd or Even Pages

You can instruct Word, when printing your document, to print only the odd- or even-numbered pages. This tip explains how ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

2023-12-20 13:16:21

Kevin Shrav

Fantastic. The time and effort savings are astronomical!


2021-01-19 11:03:14

Mateusz

will this work also on outlok?
I need to safe email as pdf once it moves to certain folder


2020-11-04 11:45:42

RF

Consider using InstrRev() to search for the last period so it doesn't cut off your filename when you have multiple periods.


2020-07-29 10:27:39

Morty

Thank you for pointing out the Publish As PDF button for my MS Word that's been there all along and just today for some reason I decided to "see if there is a way" to simplify a few clicks. As I PDF every Word doc I create daily. You just saved 1000s of seconds of my life moving forward.


2020-07-23 11:54:23

Sam P

This was really easy to follow and to the point. Thank you.


2019-01-31 06:34:34

Tadeusz

fabulous, made my day, thanks!


2019-01-18 12:28:12

LTom

Hello Allen,

I have been using PDF1 macro to save a file to PDF.
I would like the PDF file to open automatically after I it is saved.
Can you please help me with the command line to be added for that functionality?

Thanks,


2019-01-16 17:42:04

Allan

I use Word 2007. I am unable to find "File tab" ANYWHERE on ANY of the Choose Commands From... options.


2019-01-15 23:27:16

Jefu

Thanks for this tip. It was exactly what I was looking for and solved a pesky problem. Much appreciated.


2017-08-07 08:02:38

Juanita H.

A huge thank you for this tip. You have no idea how much this is going to simplify my job.


2017-08-06 02:50:50

Ken Endacott

HSK

Your error message is occurring because the statement starts with a period and is not preceded by a With statement. If you are using the SaveAsPDF2 macro most likely you have inserted the sPath = .Parh & “\” statement outside the With grouping.

With … End With is used as follows:
The statements:

Selection.Font.Bold = True
Selection.Font.Italic = True
Selection.Font.ColorIndex = wdBlue

are equivalent to:
With Selection.Font
.Bold = True
.Italic = true
.ColorIndex = wdBlue
End With


2017-08-01 07:04:02

Richard

Small correction - In the Word 2007 interface, in Word Options, choose commands from Office Menu. In Word 2010 and later, choose commands from File tab.


2017-07-31 16:51:06

Jackie Oliveira

You can also save a document as a .pdf by going to your print menu and using the DocuCom PDF Driver. Simple and fast.

Jackie Oliveira


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.