Written by Allen Wyatt (last updated April 30, 2022)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
Dan created a new document and, in that document, made two custom caption labels: "Figure Appendix" and "Figure Table." These work great in the original document. The problem is that after Dan saves the document as a template, if a colleague creates a document based on the template, the custom caption labels are not in the Caption Label list. If Dan opens the template directly, they are still there, but a document created on the template doesn't include them. He wonders how he can make the custom caption labels be present in any document that is based on the template.
The key part of Dan's problem is the statement that the caption labels are not there "if a colleague creates a document based on the template." Caption labels are not stored in regular templates or in documents, so they cannot be passed on to others. When you create custom caption labels on your machine, they are stored in your Normal template, so they are available only to you.
There are two possible solutions. First, you can instruct people as to how to create the desired custom caption labels on their own systems—it is easy to do, and the user of each computer would only need to do it once. Second, you could create a macro that would set the custom caption labels for your users. This macro would also only need to be run once on each system. The following short macro would do the trick:
Sub MakeLabels() CaptionLabels.Add Name:="Figure Appendix" CaptionLabels.Add Name:="Figure Table" End Sub
Once run, the user would see the desired caption labels in the Caption Label list, as Dan expects.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (12870) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Need to add a caption after a document element such as a figure or table? You can add and format one manually, or you can ...
Discover MoreWord can easily handle captioning common items, such as figures. What if you want to restart the numbering of those ...
Discover MoreWord can automatically add captions to various elements of your document, such as tables or figures. Here's how to ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments