how do you change i to I automatically when writing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i am using office 2007 and i cannot find how to change the settings so that
when i am tying "i" it automaically changes to "I" so that i dont have to go
through essay and edit by myself
 
You can use autocorrect (word options / proofing) and it works most of the
time, or if you can't be bothered to press the shift key to insert capitals,
you could use find and replace e.g. with the following macro:

With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
With .Replacement.Font
.SmallCaps = False
.AllCaps = True
End With
.Text = "<i[' ]"
.Replacement.Text = "^&"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
.Execute Replace:=wdReplaceAll
End With


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
What does exactly this macro do?!!!
--
Best regards,
Harvey


Graham Mayor said:
You can use autocorrect (word options / proofing) and it works most of the
time, or if you can't be bothered to press the shift key to insert capitals,
you could use find and replace e.g. with the following macro:

With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
With .Replacement.Font
.SmallCaps = False
.AllCaps = True
End With
.Text = "<i[' ]"
.Replacement.Text = "^&"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
.Execute Replace:=wdReplaceAll
End With


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

i am using office 2007 and i cannot find how to change the settings
so that when i am tying "i" it automaically changes to "I" so that i
dont have to go through essay and edit by myself
 
See http://www.gmayor.com/replace_using_wildcards.htm
It looks for 'i' starting a Word followed by a space or an apostrophe and
changes the found text to all caps.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

What does exactly this macro do?!!!
You can use autocorrect (word options / proofing) and it works most
of the time, or if you can't be bothered to press the shift key to
insert capitals, you could use find and replace e.g. with the
following macro:

With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
With .Replacement.Font
.SmallCaps = False
.AllCaps = True
End With
.Text = "<i[' ]"
.Replacement.Text = "^&"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
.Execute Replace:=wdReplaceAll
End With


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

i am using office 2007 and i cannot find how to change the settings
so that when i am tying "i" it automaically changes to "I" so that
i dont have to go through essay and edit by myself
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top