You could accomplish this by applying the Hidden attribute to the table,
then making the appropriate adjustments to Word's settings so that hidden
text is displayed, but not printed.
The location for these settings depends on which version of Word you are
using.
This macro will select the table where the cursor resides and set the
table's font attribute to hidden:
Sub SetTableHidden()
'
' SetTableHidden Macro
'
'
Selection.Tables(1).Select
Selection.Font.Hidden = True
End Sub
It will not turn it gray... it will appear with dotted lines under the text
(when hidden text is set to display).
In Word 2007, you access the display/print hidden text settings in:
Office button - Word Options - Display tab.
In Word 2003, try Tools - Options - View for displaying hidden text (or
not). For printing, see Tools - Options - Print.
--
Herb Tyson MS MVP
Author of the Word 2007 Bible
Blog:
http://word2007bible.herbtyson.com
Web:
http://www.herbtyson.com
"print/don't print table lines" <print/don't print table
(e-mail address removed)> wrote in message
news:
[email protected]...