Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Copying Custom Properties.

Copying Custom Properties

Written by Allen Wyatt (last updated April 18, 2026)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365


Custom document properties are a great way to store unique information that is associated with a document. For instance, you may have a company-assigned document number that needs to be stored with a document. A custom property fits the bill quite nicely for such purposes.

As you add custom properties to a document, you may start wondering if there is an easy way to copy them from one document to another. Unfortunately, there is no way to do this. (In my estimation, this capability would make a fine addition to the Organizer.) You can, however, create a macro that will do the copying for you. The following macro will do just that:

Sub CopyDocProps()
    Dim dSource As Document
    Dim dTarget As Document
    Dim dp As Object
    Dim J As Long
    Dim sMsg As String
    Dim sTitle As String
    Dim iResponse As vbMsgBoxResult

    sTitle = "Copy Custom Properties"
    If Documents.Count <> 2 Then
        sMsg = "Exactly two documents (source and target) must be open."
        MsgBox sMsg,,sTitle
        Exit Sub
    End If

    sMsg = "Is the source document currently active?"
    iResponse = MsgBox(sMsg,vbYesNoCancel,sTitle)

    Select Case iResponse
        Case vbCancel
            Exit Sub
        Case vbYes
            Set dSource = ActiveDocument
            If dSource Is Documents(1) Then
                Set dTarget = Documents(2)
            Else
                Set dTarget = Documents(1)
            End If
        Case vbNo
            Set dTarget = ActiveDocument
            If dTarget Is Documents(1) Then
                Set dSource = Documents(2)
            Else
                Set dSource = Documents(1)
            End If
    End Select

    If dSource.CustomDocumentProperties.Count = 0 Then
        sMsg = "There are no custom properties in the source document."
        MsgBox sMsg,,sTitle
        Exit Sub
    End If

    For J = 1 To dSource.CustomDocumentProperties.Count
        Set dp = dSource.CustomDocumentProperties(J)

        If Not CheckProp(dTarget, dp.Name) Then
            If dp.LinkToContent Then
                dTarget.CustomDocumentProperties.Add _
                  Name:=dp.Name, _
                  LinkToContent:=True, _
                  Value:=dp.Value, _
                  Type:=dp.Type, _
                  LinkSource:=dp.LinkSource
            Else
                dTarget.CustomDocumentProperties.Add _
                  Name:=dp.Name, _
                  LinkToContent:=False, _
                  Value:=dp.Value, _
                  Type:=dp.Type
            End If
        Else
            ' Update property
            With dTarget.CustomDocumentProperties(dp.Name)
                ' If link status differs, delete and recreate
                If (.LinkToContent <> dp.LinkToContent) _
                  Or (.Type <> dp.Type) Then
                    .Delete
                    If dp.LinkToContent Then
                        dTarget.CustomDocumentProperties.Add _
                          Name:=dp.Name, _
                          LinkToContent:=True, _
                          Value:=dp.Value, _
                          Type:=dp.Type, _
                          LinkSource:=dp.LinkSource
                    Else
                        dTarget.CustomDocumentProperties.Add _
                          Name:=dp.Name, _
                          LinkToContent:=False, _
                          Value:=dp.Value, _
                          Type:=dp.Type
                    End If
                Else
                    ' Same link state and type
                    ' Update value and source if needed
                    .Value = dp.Value
                    If dp.LinkToContent Then
                        If .LinkSource <> dp.LinkSource Then
                            .LinkSource = dp.LinkSource
                        End If
                    End If
                End If
            End With
        End If
    Next J

    sMsg = "Custom properties have been copied or updated."
    MsgBox sMsg,,sTitle
End Sub
Private Function CheckProp(d As Document, sName As String) As Boolean
    Dim p As Object

    On Error Resume Next
    Err.Clear
    Set p = d.CustomDocumentProperties(sName)
    CheckProp = (Err.Number = 0)
    On Error GoTo 0
End Function

The macro will copy custom properties from the source document to the target document. If the target document has a custom property with the same name as one in the source, then the one in the target document is updated to match the one in the source. The CheckProp function is used to determine if the property name already exists in the target document.

In order to use the macro, make sure that you have only the source and target documents open. When the macro is finished, you will need to save the target document.

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 (11671) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Copying Custom Properties.

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

Extracting Proper Words

If you've got a list of potential words, and you want to know which of those potential words are real, you'll appreciate ...

Discover More

Calculating Only the Active Workbook

When you enter information into a workbook, Excel automatically recalculates every worksheet in every open workbook on ...

Discover More

Displaying a Calendar

Want to know what today is? How about the date for next Thursday or the second Friday in October? Windows can display a ...

Discover More

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

More WordTips (ribbon)

Saving Documents as Read-Only by Default

When you save your documents, you can specify that they be saved in a "read-only" format so that they cannot be changed ...

Discover More

Using a Standard Format in a Suggested File Name

Many companies (and some individuals) use specific formats for naming their documents. If you want Word to recognize your ...

Discover More

Embedding TrueType Fonts by Default

If you use TrueType fonts frequently, you might want to set Word to embed those fonts by default. Here's how to do it.

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 seven more than 3?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


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.