Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
pstephe1 pstephe1 is offline
external usenet poster
 
Posts: 3
Default Find & Print specific pages based on key words

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   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Find & Print specific pages based on key words

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   Report Post  
Posted to microsoft.public.word.docmanagement
pstephe1 pstephe1 is offline
external usenet poster
 
Posts: 3
Default Find & Print specific pages based on key words

Outstanding Grahm, thanks for your input. I will try it out.
Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how can i find all words of a specific character length? upisdn Microsoft Word Help 2 August 27th 07 04:15 PM
print button for specific pages SP Microsoft Word Help 4 May 1st 07 07:48 PM
Print Specific Pages Jules Microsoft Word Help 2 February 26th 07 03:32 AM
Is it possible to selectively print or hide pages based on a linked field? bob New Users 1 November 16th 05 06:29 AM
find specific words in large documents rossmonty Microsoft Word Help 1 September 30th 05 01:48 PM


All times are GMT +1. The time now is 08:26 AM.

Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"