Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Reversed Bolding.
Written by Allen Wyatt (last updated August 5, 2020)
This tip applies to Word 97, 2000, 2002, and 2003
Jeff has a problem when it comes to pasting information from other people's documents into his. He works in an office where different departments send him reports. He copies information from those reports to an "overview" document. All the copying and pasting goes well, except for one document. When he copies information from that document and pastes it into his, the pasted information has the bold attribute reversed. In other words, what was regular text in the original document is now bold, and what was bold is now regular.
Copying information from one document to another can be, at times, a hit-and-miss proposition. The reason is that it doesn't always work as we expect it to, particularly when it comes to formatting. The problems can typically be traced to a difference in how styles and formatting are handled in both the source and target documents.
You see, even if you don't use styles, Word still does. Every paragraph has a style applied to it, regardless of whether you think it does or not. When you copy paragraphs from one document to the other, Word doesn't think "hey, I'm copying regular text over." Instead, it thinks "hey, I'm copying text formatted with the SoAndSo style over." If both the source and target documents use a style with the same name, and that style is formatted differently in both, then the copied text won't look the same in the target document as it does in the source. You can find a particularly good explanation of this entire concept here:
http://www.shaunakelly.com/word/styles/FormatOfTextChanges.html
The best long-term solution, then, is to make sure that both the source and target documents use the same styles, and that the styles are applied properly in both documents.
If utilizing styles is not an option (perhaps office politics won't allow for it), then you may be forced to simply try to "fix" the information pasted in your target document. There are two ways you can do this: by using Find and Replace or by using a macro. To use the Find and Replace method, follow these general steps:
The use of a different-colored text (red) is necessary so that there can remain a differentiation between the text that is supposed to end up bold and the text that is supposed to end up regular.
If you use a macro, there is no such problem. The following simple macro goes through each character in a selection and simply changes the condition of the bold attribute.
Sub ReverseBold() Dim c For Each c In Selection.Characters c.Font.Bold = Not c.Font.Bold Next c End Sub
All you need to do is select the text you just pasted—the text that has the bolding reversed—and run the macro. Every instance of bold text is changed to regular, and regular is changed to bold.
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 (3525) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Reversed Bolding.
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
A quick little shortcut can help you easily step through different font sizes for whatever text you've selected. Word ...
Discover MoreWord allows you to easily insert the contents of one document into another. Doing so, however, may result in unintended ...
Discover MoreWhen you add superscripts to words in your document, you may not want those superscripts to be spell-checked. Here's how ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-03-24 22:11:06
Jonathan Sevy
BoldReverse macro works like a charm. Try on the first couple of lines of text first, as it does it's work ONE CHARACTER AT A TIME, about 20/second. You can watch the characters reverse from bold to normal, and vice versa. Then select the rest of the document and run the macro again.
Thanks a million, Allen.
2015-05-24 21:03:08
Todd P
I'm afraid I do not understand this. I do not know how to use a macro, and it seemed like you were just saying to change the bold into non-bold and vice-versa after you do the copy and paste. I know how to do that - I'm trying to do copy & paste without having to do that! I know what style I use - but I don't know what style other documents use.
2014-10-26 03:56:48
masha
Thank you so much, this saved me a lot of time on a large document. It works like magic!
2014-09-18 02:38:29
vivi
it works. thank you very much
2014-09-06 19:08:08
Jim Foote
I use a handy little app called PureText, available as a free download from http://stevemiller.net/puretext/. After installing it simply copy your text from any source to the clipboard, click on the PureText icon and paste the text into your document. All formatting is removed. I wouldn't be without it.
Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon 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 © 2024 Sharon Parq Associates, Inc.
Comments