Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I work in very large technical engineering documents (200+ pages). Buried
within these documnets is a slew of technical data I need to extract. Right now I perform a search of key words, highlight it and write down the specific page it's on and finally print out those specific pages (to a PDF). I would like to know if there is an easier way of doing this. Any help would be greatly appreciated. Thanks in advance. |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
You could use a simple macro. The following will print the pages that
contain the word or phrase you enter in the dialog box Sub PrintPageWithWord() Dim sWord As String sWord = InputBox("Enter term to find", "Print pages") With Selection .HomeKey wdStory With .Find .ClearFormatting .Replacement.ClearFormatting While .Execute(findText:=sWord) Application.PrintOut Range:=wdPrintCurrentPage Wend End With End With End Sub http://www.gmayor.com/installing_macro.htm If you want to incorporate the switch to your unnamed PDF printer driver, then see http://www.gmayor.com/fax_from_word.htm for the extra code required. -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org pstephe1 wrote: I work in very large technical engineering documents (200+ pages). Buried within these documnets is a slew of technical data I need to extract. Right now I perform a search of key words, highlight it and write down the specific page it's on and finally print out those specific pages (to a PDF). I would like to know if there is an easier way of doing this. Any help would be greatly appreciated. Thanks in advance. |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Outstanding Grahm, thanks for your input. I will try it out.
|
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how can i find all words of a specific character length? | Microsoft Word Help | |||
print button for specific pages | Microsoft Word Help | |||
Print Specific Pages | Microsoft Word Help | |||
Is it possible to selectively print or hide pages based on a linked field? | New Users | |||
find specific words in large documents | Microsoft Word Help |