Checking style in proofing in Word 2016

Anonymous
2015-09-25T02:30:46+00:00

What happened to being able to check style in Word 2016 when proofing (number of spaces after a sentence, contractions, hyphenated words, etc.)??

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
Anonymous
2017-03-15T13:09:13+00:00

Those Style Options in Editor which were also part of earlier Office versions (e.g. Passive Voice) are now available for Office 2016 Click-to-Run perpetual users in Office build 16.0.7870.2020 and newer builds. New Grammar and Style options and other ongoing enhancements to the experience, will continue to be exclusively offered through an Office 365 subscription. 

The "Grammar & More" Writing Style is not available in the drop down yet. To enable the Style Options in Word, go to File -> Options -> Proofing and click on the "Settings…" button next to the Writing Style drop down "Grammar". The Grammar Settings window will pop up where you can customize the checks. You will first see the available Grammar Options and when you scroll down, you will see the Style Options starting with Options for "Clarity & Conciseness".

Just check the checkbox next to the Options you'd like to enable.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2016-10-05T10:36:32+00:00

Hi

I can finally announce that the update is now available to all Office for Windows subscription users.

Apologies for the delay. The monthly updates always contain several new features or improvements and delays can unfortunately occur for many different reasons.

The English Style options are now available to all Windows Word and Outlook subscription users with Office build 16.0.7369.2024 or newer.

Office for Mac subscription Insiders Fast users are scheduled to receive the update with build 15.28.0.161004 or newer.

We appreciate your feedback. Please let us know if you see false flags (= incorrect flags/unexpected flags), missed flags or incorrect suggestions.

The Writing Style “Grammar & more” is now on by default. All Grammar Options and the two new Options “Wordiness” and “Nominalizations” are enabled. If you like to enable more Style Options, follow these steps:

In Word 2016:

  1. Go to "File" -> "Options" -> "Proofing"
  2. If the Writing Style is not "Grammar & more", please change to "Grammar & more" using the drop down.
  3. Click on “Settings”

  1. Only two Options ("Wordiness, Nominalizations") are enabled by default. You can enable more Options by ticking the checkbox next to them:

 

To enable the feature in Outlook, please do the following:

In Outlook 2016:

  1. From a popped-out mail window, go to "File" -> "Options" -> "Mail". (Don't do this from the main Outlook window.)
  2. Click on "Spelling and Autocorrect…" in the section "Compose messages". You'll be taken to the "Proofing" tab of the "Editor Options" dialog.
  3. If the Writing Style is not "Grammar & more", please change to "Grammar & more" using the drop down.
  4. Check the checkbox next to "Mark grammar errors as you type" in the "When correcting spelling in Outlook" section.

  1. To enable more Style Options, please follow steps 3.) and 4.) described for Word above.

We've also included many bug fixes in this update.

We're working on improving the Grammar Checker further and will release more Options in the coming months.

Thanks, Nicole

Was this answer helpful?

0 comments No comments

658 additional answers

Sort by: Oldest
  1. Anonymous
    2016-03-08T17:39:14+00:00

    I found this macro. It does more than what you are looking for, so you probably should strip out the "extra stuff".

    <snip>

    EmailClean Macro

    I posted the following macro a long time ago.  It will reformat selected text by changing a paragraph mark into a space, changing 2 or more paragraphs to 1, changing 2 or more line breaks to 1, & putting 2 spaces between all sentences.  It also removes white space at the beginning & end (& middle) of each sentence. You can modify it to put only one space betweeen sentences.  Anything that starts with a ' is a comment & you can delete it, if you want.

    Note: Do not use the macro on other macros (as it gets rid of the paragraph marks).  Just copy & paste the macro into a global template.  I've placed it on a menu so that I can call it just by typing Alt, M, E.

    Sub EmailClean()

    '

    ' EmailClean Macro

    ' operates on selected text

    ' Macro created 6/12/01 by Phil Rabichow

    '

        Application.ScreenUpdating = False

        Selection.Range.Style = ActiveDocument.Styles(wdStyleNormal)

        Selection.Find.ClearFormatting

        Selection.Find.Replacement.ClearFormatting

    ' Replace line break with paragraph mark

        With Selection.Find

            .Text = "^l"

            .Replacement.Text = "^p"

            .Forward = True

            .Wrap = wdFindStop

            .Format = False

            .MatchCase = False

            .MatchWholeWord = False

            .MatchAllWordForms = False

            .MatchSoundsLike = False

            .MatchWildcards = False

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' Remove white space at the beginning of lines

        With Selection.Find

            .Text = "^p^w"

            .Replacement.Text = "^p"

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' Remove spaces before paragraph marks

        With Selection.Find

            .Text = " {1,}^013"

            .Replacement.Text = "^p"

            .MatchWildcards = True

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' This prevents extra paragraph marks at the end of the selection

        Selection.MoveLeft Unit:=wdCharacter, Count:=1, Extend:=wdExtend

    ' Removes spaces in first line

        With Selection.Find

            .Text = " {3,}"

            .Replacement.Text = ""

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' Replace end of line paragraph marks with a space

        With Selection.Find

            .Text = "^p^p"

            .Replacement.Text = "%$%"

            .MatchWildcards = False

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' Since this causes 3 paragraph marks to have a space,

        With Selection.Find

            .Text = "^p"

            .Replacement.Text = " "

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

        With Selection.Find

            .Text = "%$%"

            .Replacement.Text = "^p"

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' we added this to remove the space paragraph

        With Selection.Find

            .Text = "^p "

            .Replacement.Text = "^p"

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' This puts 2 spaces between sentences

        With Selection.Find

            .Text = ". {1,}"

            .Replacement.Text = ".  "

            .MatchWildcards = True

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

        Selection.Find.ClearFormatting

        Selection.Find.Replacement.ClearFormatting

        With Selection.Find

            .Text = "? {1,}"

            .Replacement.Text = "?  "

        End With

        Selection.Find.Execute Replace:=wdReplaceAll

        With Selection.Find

            .Text = "! {1,}"

            .Replacement.Text = "!  "

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    ' we'll see how it works without this

    '    Selection.Find.ClearFormatting

    '    Selection.Find.Replacement.ClearFormatting

    '    With Selection.Find

    '        .Text = "^w^p"

    '        .Replacement.Text = "^p"

    '        .MatchWildcards = False

    '    End With

    'Selection.Find.Execute Replace:=wdReplaceAll

    '    Selection.Find.ClearFormatting

    '    Selection.Find.Replacement.ClearFormatting

        With Selection.Find

            .Text = "^p"

            .Replacement.Text = "^p^p"

            .MatchWildcards = False

        End With

    Selection.Find.Execute Replace:=wdReplaceAll

    '    With Selection.Find

    '        .Text = " {1,}^013"

    '        .Replacement.Text = "^p"

    '        .MatchWildcards = True

    '    End With

    'Selection.Find.Execute Replace:=wdReplaceAll

        Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdMove

        Application.ScreenUpdating = True

    End Sub

    </snip>

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2016-03-08T18:28:45+00:00

    I rest my case.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2016-03-08T20:31:46+00:00

    Okay, a few months has gone by and still no "Grammar and Style" option. This also means I am unable to specify the type of document I am producing; for me it is a dissertation proposal and must be formal. PLEASE restore some functionality access! I can only imagine how many important documents count on this feature! I am ready NOW! If you are going to update and revise functionality, may I suggest you keep the older version in place while you work it out?  Is that not what patch updates are for? Hurry!

    As with other MS365 users, the only version available is the one provided.

    M

    Was this answer helpful?

    0 comments No comments