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

Who Has the File Open?

Open a workbook that someone else is working on, and you won't be able to save your changes back into the same file. ...

Discover More

Complex Searches for Documents

When working with lots of documents, you may have need from time to time to discover which of those documents contain ...

Discover More

Counting Cells Containing a Word

If you need to know how many cells contain a particular word, there is a variety of ways that you can find the answer. ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2019. Spend more time working and less time trying to figure it all out! Check out Word 2019 For Dummies today!

More WordTips (ribbon)

Complex Searches for Documents

When working with lots of documents, you may have need from time to time to discover which of those documents contain ...

Discover More

Opening Only a Merge Document

After merging the information from a data source into a document, you may decide that you only want to open the merge ...

Discover More

Listing Documents with Passwords

Do you need a list of documents that require a password or that require a particular password to open? Word doesn't ...

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 eight more than 5?

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.