> Using Word 2003 with Windows XP
> My VBA skills - Fair
>
> I have a template which I inherited.
I hope that means you can add some code to it.
You could hide the text.
If ActiveDocument.FormFields("Report1").Result = "" Then
ActiveDocument.Sections(2).Range.Font.Hidden = True
End If
Then when you printout, only the visible will printout.
If you want to keep the original intact, just close without saving.
Olduke - 06 Jan 2008 03:41 GMT
Thank you David, I'll give it a try.
The template is designed to open as a document, so it should be OK
Glen
> > Using Word 2003 with Windows XP
> > My VBA skills - Fair
[quoted text clipped - 12 lines]
>
> If you want to keep the original intact, just close without saving.