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 352K 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.2K 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. Anonymous
    2014-12-30T14:27:56+00:00

    You can choose which shading colour to keep, as long as you know what that colour is. For example, the pale blue colour in the example document is RGB(246,250,251) or &HFBFAF6. You can call the colour directly e.g. the following will remove the other shading colours leaving the blue behind.

    How do you find the colour? ColorCop comes to the rescue. This little tool is invaluable for programmers working with colour.

    Dim oPara As Paragraph

        For Each oPara In ActiveDocument.Paragraphs

            With oPara.Range.Shading

                If Not .BackgroundPatternColor = &HFBFAF6 Then

                    .BackgroundPatternColor = wdColorAutomatic

                End If

            End With

            With oPara.Range.Font.Shading

                If Not .BackgroundPatternColor = &HFBFAF6 Then

                    .BackgroundPatternColor = wdColorAutomatic

                End If

            End With

        Next oPara

    Was this answer helpful?

    0 comments No comments