Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
How do I count the number of repetitive words?
Is there a way I can pick a particular word to look for? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Well you can use find and replace to find the word and replace it with the
same word. You can also use an Add-In that I created to do this sort of thing: http://gregmaxey.mvps.org/Word_Frequency.htm -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... How do I count the number of repetitive words? Is there a way I can pick a particular word to look for? |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Greg,
Great tool! How can I make it diferentitate between CAPITAL versions of a word and non? For instance it versus IT. "Greg Maxey" wrote: Well you can use find and replace to find the word and replace it with the same word. You can also use an Add-In that I created to do this sort of thing: http://gregmaxey.mvps.org/Word_Frequency.htm -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... How do I count the number of repetitive words? Is there a way I can pick a particular word to look for? |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Well that gets pretty gnarly ;-)
You could revise the code as follows: Change: SingleWord = Trim(LCase(aWord)) To: SingleWord = Trim(aWord) Change: If SingleWord "a" Or SingleWord "z" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If To: If SingleWord "A" Or SingleWord "z" Or Asc(SingleWord) 90 And Asc(SingleWord) 97 Then '= "[" Or SingleWord = "]" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If But that would count "it" "IT" and "It" as three separatar words. I haven't taken the time to figure out how to process the first word of a sentence or how they should be counted. They are all in fact the same word ;-) -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... Greg, Great tool! How can I make it diferentitate between CAPITAL versions of a word and non? For instance it versus IT. "Greg Maxey" wrote: Well you can use find and replace to find the word and replace it with the same word. You can also use an Add-In that I created to do this sort of thing: http://gregmaxey.mvps.org/Word_Frequency.htm -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... How do I count the number of repetitive words? Is there a way I can pick a particular word to look for? |
#5
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Greg,
LOL! That sounds like me doing a macro and well I am not good at that. IT as in Information Technology and it are different words. Especially in a CV! Thanks for your help though. "Greg Maxey" wrote: Well that gets pretty gnarly ;-) You could revise the code as follows: Change: SingleWord = Trim(LCase(aWord)) To: SingleWord = Trim(aWord) Change: If SingleWord "a" Or SingleWord "z" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If To: If SingleWord "A" Or SingleWord "z" Or Asc(SingleWord) 90 And Asc(SingleWord) 97 Then '= "[" Or SingleWord = "]" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If But that would count "it" "IT" and "It" as three separatar words. I haven't taken the time to figure out how to process the first word of a sentence or how they should be counted. They are all in fact the same word ;-) -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... Greg, Great tool! How can I make it diferentitate between CAPITAL versions of a word and non? For instance it versus IT. "Greg Maxey" wrote: Well you can use find and replace to find the word and replace it with the same word. You can also use an Add-In that I created to do this sort of thing: http://gregmaxey.mvps.org/Word_Frequency.htm -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... How do I count the number of repetitive words? Is there a way I can pick a particular word to look for? |
#6
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
You can use Find for this. In the Find dialog, check the box for "Match
Case." Then select "Highlight all items found" and click Find All. Word will tell you how many it found (and they will be selected). -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA Word MVP FAQ site: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. "itgreenwich" wrote in message ... Greg, LOL! That sounds like me doing a macro and well I am not good at that. IT as in Information Technology and it are different words. Especially in a CV! Thanks for your help though. "Greg Maxey" wrote: Well that gets pretty gnarly ;-) You could revise the code as follows: Change: SingleWord = Trim(LCase(aWord)) To: SingleWord = Trim(aWord) Change: If SingleWord "a" Or SingleWord "z" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If To: If SingleWord "A" Or SingleWord "z" Or Asc(SingleWord) 90 And Asc(SingleWord) 97 Then '= "[" Or SingleWord = "]" Then SingleWord = "" 'Out of range? NonWordObjects = NonWordObjects + 1 ' End If But that would count "it" "IT" and "It" as three separatar words. I haven't taken the time to figure out how to process the first word of a sentence or how they should be counted. They are all in fact the same word ;-) -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... Greg, Great tool! How can I make it diferentitate between CAPITAL versions of a word and non? For instance it versus IT. "Greg Maxey" wrote: Well you can use find and replace to find the word and replace it with the same word. You can also use an Add-In that I created to do this sort of thing: http://gregmaxey.mvps.org/Word_Frequency.htm -- Greg Maxey/Word MVP See: http://gregmaxey.mvps.org/word_tips.htm For some helpful tips using Word. "itgreenwich" wrote in message ... How do I count the number of repetitive words? Is there a way I can pick a particular word to look for? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
word count different words | Microsoft Word Help | |||
How do you set up a short cut to type repetitive words in 2003 | Microsoft Word Help | |||
Can I set word count to not count words with three letters less? | Microsoft Word Help | |||
how can i reduce repetitive typing of the same words in a documen. | Microsoft Word Help | |||
Is there a way repetitive words can be highlighted by default in . | Microsoft Word Help |