I cannot remove highlights from Word 2010 documents.

Anonymous
2010-10-22T18:56:45+00:00

Highlights in Word 2010

I cannot remove highlights from Word 2010 documents.

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Stefan Blom 351.7K Reputation points MVP Volunteer Moderator
2011-08-20T12:51:19+00:00

For what it's worth, Ctrl+SpaceBar clears direct character formatting, and Ctrl+Q clears direct paragraph formatting applied to text.

In other words, it seems as if some sort of character formatting was applied to your text.

Was this answer helpful?

700+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2011-08-21T03:39:28+00:00

It sounds like shading was applied to a part of a paragraph.  It is then character formatting and Ctrl+spacebar will clear it. If shading is applied to the entire paragraph, it's paragraph formatting.  Ctrl+spacebar won't remove it,  but Ctrl+q will.

Pam

Was this answer helpful?

300+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2012-07-16T01:21:02+00:00

The replies above are useless for this very common complaint. Here's how to solve the problem:

PCs: Copy the highlighted text. Paste it with the icon that has the arrow on it. This preserves formatting EXCEPT highlighting is removed.

Macs: Copy the highlighted text. Use "Paste Preserving Formatting". Same result as above.

MICROSOFT: Get on the stick and address this pernicious bug! Remove Highlighting should be made to work. The product looks ridiculous otherwise. It's such an impressive product otherwise. Please get rid of this silliness.

Was this answer helpful?

0 comments No comments
Answer accepted by question author
Suzanne S Barnhill 279.1K Reputation points MVP Volunteer Moderator
2012-06-19T17:38:51+00:00

You seem to have a lot of questions not related to the subject of the original post. It would be better for you to start a new thread and ask your specific questions about, for example, AutoText entries (which basically are created the same way as in past versions, using Alt+F3).

Was this answer helpful?

0 comments No comments

130 additional answers

Sort by: Most helpful
  1. Stefan Blom 351.7K Reputation points MVP Volunteer Moderator
    2017-05-15T18:46:03+00:00

    To remove font and paragraph shading you can run the following macro:

    Sub ClearAllShadingFromDoc()

         'Macro created by Stefan Blom, MVP, January 2015

        With ActiveDocument.Content.ParagraphFormat.Shading

             .Texture = wdTextureNone

             .ForegroundPatternColor = wdColorAutomatic

             .BackgroundPatternColor = wdColorAutomatic

         End With

         With ActiveDocument.Content.Font.Shading

             .Texture = wdTextureNone

             .ForegroundPatternColor = wdColorAutomatic

             .BackgroundPatternColor = wdColorAutomatic

         End With

     End Sub

    For assistance, see http://www.gmayor.com/installing\_macro.htm.

    Was this answer helpful?

    0 comments No comments