Hi
I use Excel to open word documents and print the word document. I use this code to open word and to print it.
Code
Set wdApp = CreateObject("Word.Application")
wdApp.documents.Open Filename:=aNameAndPath & Filename
wdApp.Visible = True
wdApp.ActiveDocument.PrintOut , Copies:=1
Now i have word documents that is divide into Sections. I would like to find a code so that it's only Section 2 in the word document that is been printed.
Thank you in advance.
Alring