I Don't Want Curly Quotes / I Want Curly Quotes

This page last revised: 19 Feb 2026 11:59:57 -0500 .

 

 

 

The default setting in Word is to convert straight quote " and apostrophe ' marks to smart (curly) ones. The curly ones are very good for documents, not so good on the Internet.

You can change this setting in your AutoFormat as You Type Options.

Word 97 - Word 2003

Tools > AutoCorrect Options > AutoFormat As You Type (tab)

 

Word 2007 -

Office Button (2007) / File (2010-16) (tab) -> Options -> Proofing -> AutoCorrect Options (Button)

I regularly edit some Word documents intended to be displayed on the Internet and prefer to have this turned off when working on those documents and on the rest of the time. The following code when placed in a vba module for a document templates helps with this:

Option Explicit

Sub CurlyQuoteToggle()
' Written 2011-Oct-20 by Charles Kenyon
' Toggles option to convert straight quote marks to curly quotes
 With Application.Options
.AutoFormatAsYouTypeReplaceQuotes = _
Not .AutoFormatAsYouTypeReplaceQuotes
End With
End Sub

Sub AutoOpen()
' Turns Smart Quotes off when attached document is opened
Application.Options.AutoFormatAsYouTypeReplaceQuotes = False
End Sub

Sub AutoClose()
' Turns Smart Quotes on when attached document is closed
Application.Options.AutoFormatAsYouTypeReplaceQuotes = True
End Sub
 

The template is then attached to the document I'm working on. When it opens it turns off the smart quotes. When it is closed it turns them back on. The toggle procedure works as well. Eventually I may get around one that senses the activedocument but this works well enough for me now.

Return to Questions List

 

 The up-to-date version of this FAQ may be found at:

http://www.addbalance.com/word/

Download this FAQ in Word 97 format

Send e-mail

Changes / suggestions / ideas can be sent to Charles Kenyon.

Hit Counter views since 13 April 2004

Many people visit this site and use the information it contains.
It costs money to keep on line and effort to update.
If you have received assistance here
please consider making a donation if you can.

 
Thank you. ckk

Copyright 2000-2026 Charles Kyle Kenyon

FAQ provided as an adjunct / hobby as a part of my web site as a criminal defense lawyer.

Smile! Bumper stickers and jokes.

Click to return to table of contents page of Intermediate User's Guide to Microsoft Word.Click to go to Microsoft Word new users frequently asked questions site in a new browser window.
(Intermediate Users' Guide) - - - - - - - - - - - - - - - - - - -  (Questions List)