From: Trish on 26 Mar 2010 16:09 I used to be able to do this in the prior version... not sure how to do it in my new version. If I have a doc with a list of items that all have a : after them and the first written character after the two spaces following the colon is a small letter and I want to replace them with a capital letter, how do I do that? In the prior version, I used Find :^$ and then "highlight all" and then used the change case function. In this version, "highlight all" is not an option. Please advise.
From: macropod on 26 Mar 2010 18:17 Hi Trish, Once you've input the Find string, click on 'Reading Highlight' and choose 'Highlight All'. -- Cheers macropod [Microsoft MVP - Word] "Trish" <Trish(a)discussions.microsoft.com> wrote in message news:783ECD14-6723-498D-B6AE-6E6D426F87EF(a)microsoft.com... >I used to be able to do this in the prior version... not sure how to do it in > my new version. If I have a doc with a list of items that all have a : after > them and the first written character after the two spaces following the colon > is a small letter and I want to replace them with a capital letter, how do I > do that? In the prior version, I used Find :^$ and then "highlight all" and > then used the change case function. In this version, "highlight all" is not > an option. Please advise.
From: Doug Robbins - Word MVP on 26 Mar 2010 18:25 Use a macro containing the following code: Selection.HomeKey wdStory Selection.Find.ClearFormatting With Selection.Find Do While .Execute(FindText:=": [a-z]", Forward:=True, _ MatchWildcards:=True, Wrap:=wdFindContinue, MatchCase:=False) = True Selection.Text = Left(Selection.Text, 3) & UCase(Right(Selection.Text, 1)) Loop End With -- Hope this helps. Please reply to the newsgroup unless you wish to avail yourself of my services on a paid consulting basis. Doug Robbins - Word MVP, originally posted via msnews.microsoft.com "Trish" <Trish(a)discussions.microsoft.com> wrote in message news:783ECD14-6723-498D-B6AE-6E6D426F87EF(a)microsoft.com... > I used to be able to do this in the prior version... not sure how to do it > in > my new version. If I have a doc with a list of items that all have a : > after > them and the first written character after the two spaces following the > colon > is a small letter and I want to replace them with a capital letter, how do > I > do that? In the prior version, I used Find :^$ and then "highlight all" > and > then used the change case function. In this version, "highlight all" is > not > an option. Please advise.
From: Pamelia Caswell via OfficeKB.com on 26 Mar 2010 22:33 Click "Find in" and then "Main document". Word will "select", all items found. Pam Trish wrote: >I used to be able to do this in the prior version... not sure how to do it in >my new version. If I have a doc with a list of items that all have a : after >them and the first written character after the two spaces following the colon >is a small letter and I want to replace them with a capital letter, how do I >do that? In the prior version, I used Find :^$ and then "highlight all" and >then used the change case function. In this version, "highlight all" is not >an option. Please advise. -- Message posted via http://www.officekb.com
|
Pages: 1 Prev: How can I "go to the last page" of a long document? Next: song title grammar in a story |