![]() |
|
#1
|
|||
|
|||
![]()
i need count of words from document start to before "AN CC" containt...
Let say... i have 10 or 15 or more pages before "AN CC" then i need count of all above page's words count till "AN CC" Containt.. not after this... |
#2
|
|||
|
|||
![]()
Okay here is the code. I am assuming you know how to enter the code.
I have used "AN CC" as the search string - from the example you gave. A message box gives you the total number of words before this string. You can modify this code to do with it whatever you want. Code:
Sub countwords() Dim intcount As Integer Selection.HomeKey Unit:=wdStory, Extend:=wdMove With Selection.Find .Text = "AN CC" .Forward = True .Wrap = wdFindStop .Execute End With Selection.HomeKey Unit:=wdStory, Extend:=wdExtend intcount = Selection.Words.Count Call MsgBox("The total number of words before AN CC are " & intcount, vbExclamation, Application.Name) End Sub |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
John P | Word | 1 | 05-31-2012 10:29 PM |
![]() |
expert4knowledge | Word | 7 | 05-31-2012 02:37 PM |
![]() |
Jamal NUMAN | Word | 1 | 09-03-2011 11:37 AM |
Textbox Number changes when I open Word | t0m46 | Word VBA | 0 | 09-07-2010 05:46 AM |
Number formatting in Word table | 8braitp | Word Tables | 0 | 08-27-2009 04:12 AM |