Group:  Microsoft Word ยป microsoft.public.word.newusers
Thread: dissertation doldrums

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

dissertation doldrums
"dry martini" <pete_walton[ at ]hotmail.com> 15.09.2006 09:50:43
Dear All

It's dissertation submission time and I am having a headache trying to
calculate the word count in word. Does anyone know of a way to exclude
tables from the word count? I have resorted to cutting and pasting the
tables out of the document and then doing the count before importing
them back. Dull but effective.

Re: dissertation doldrums
"Jay Freedman" <jay.freedman[ at ]verizon.net> 15.09.2006 13:59:16
That's _almost_ the most efficient way. A better method is to use File >
Save As to make a copy of the document, keeping the original intact. In the
copy, delete all the tables and do the word count. Then you don't have to
put them back.

If you're willing to use a macro in the copy (*not* in the original!), this
is a one-click solution:

Sub WordCountWithoutTables()
Dim oTbl As Table
For Each oTbl In ActiveDocument.Tables
oTbl.Delete
Next
Dialogs(wdDialogToolsWordCount).Show
End Sub

See http://www.gmayor.com/installing_macro.htm if needed.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

dry martini wrote:
[Quoted Text]
> Dear All
>
> It's dissertation submission time and I am having a headache trying to
> calculate the word count in word. Does anyone know of a way to exclude
> tables from the word count? I have resorted to cutting and pasting the
> tables out of the document and then doing the count before importing
> them back. Dull but effective.


Re: dissertation doldrums
"dry martini" <pete_walton[ at ]hotmail.com> 18.09.2006 08:43:53
Jay

Thanks for getting back to me with a solution. I'll give the macro a
try and see what happens. It is a shame that there are no selection
options within the wordcount to request which parts are
included/excluded. I really will have earnt my dry martini by the end
of this one!

All the best

DM

Jay Freedman wrote:
[Quoted Text]
> That's _almost_ the most efficient way. A better method is to use File >
> Save As to make a copy of the document, keeping the original intact. In the
> copy, delete all the tables and do the word count. Then you don't have to
> put them back.
>
> If you're willing to use a macro in the copy (*not* in the original!), this
> is a one-click solution:
>
> Sub WordCountWithoutTables()
> Dim oTbl As Table
> For Each oTbl In ActiveDocument.Tables
> oTbl.Delete
> Next
> Dialogs(wdDialogToolsWordCount).Show
> End Sub
>
> See http://www.gmayor.com/installing_macro.htm if needed.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the newsgroup so
> all may benefit.
>
> dry martini wrote:
> > Dear All
> >
> > It's dissertation submission time and I am having a headache trying to
> > calculate the word count in word. Does anyone know of a way to exclude
> > tables from the word count? I have resorted to cutting and pasting the
> > tables out of the document and then doing the count before importing
> > them back. Dull but effective.

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net