Share via

How do I stop highlighted text from printing in Word documents?

Anonymous
2025-02-14T15:30:06+00:00

I want to highlight selected text in Word documents so that the highlight remains visible but does not appear on my printed 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

3 answers

Sort by: Most helpful
  1. Charles Kenyon 166.6K Reputation points Volunteer Moderator
    2025-02-14T21:29:57+00:00

    Just clarifying, you want the highlighting to not print, but want the text that is highlighted to print?

    Stefan has given you the simplest method.

    You use a macro to toggle that setting.

    Sub HighlightingToggle()
    
    '
    
    ' HighlightingToggle Macro
    
    ' Charles Kenyon
    
    ' Toggles display and printing of highlighting
    
    ' https://answers.microsoft.com/en-us/msoffice/forum/all/how-do-i-stop-highlighted-text-from-printing-in/dafbd840-0c43-441a-883f-f1d7fa62a256
    
    ' Does not change Shading!
    
    '
    
        ActiveWindow.View.ShowHighlight = Not ActiveWindow.View.ShowHighlight
    
    End Sub
    

    You could attach a keyboard shortcut or QAT icon to this macro if you wanted to do so.

    Resources:

    This setting is persistent and is for all Word documents, not just the current one.

    I recommend toggling back to display of highlighting once you have printed.

    You could also add the following macro to your Normal.dotm template:

    Sub AutoOpen()
    
    '
    
    ' Display highlighting
    
    ' Charles Kenyon
    
    ' Turns on display and printing of highlighting when document is opened
    
    ' https://answers.microsoft.com/en-us/msoffice/forum/all/how-do-i-stop-highlighted-text-from-printing-in/dafbd840-0c43-441a-883f-f1d7fa62a256
    
    ' 
    
        ActiveWindow.View.ShowHighlight = True
    
    End Sub
    
    2 people found this answer helpful.
    0 comments No comments
  2. Stefan Blom 338.7K Reputation points MVP Volunteer Moderator
    2025-02-14T20:45:26+00:00

    A manual approach is to clear the option to "Show highlighter marks" immediately before printing, and then select the option again after printing.

    2 people found this answer helpful.
    0 comments No comments
  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more