Highlight entire Column(2) in a table

A

Alan Z. Scharf

Hi,

I want to highlight the entire Column(2) of a table in VBA so that I can
then format all the paragraphs in Column(2) at once.

What is the syntax for Selecting and Highlighting the entire Column(2)?

Thanks.

Alan
 
J

Jean-Guy Marcil

Alan Z. Scharf was telling us:
Alan Z. Scharf nous racontait que :
Hi,

I want to highlight the entire Column(2) of a table in VBA so that I
can then format all the paragraphs in Column(2) at once.

What is the syntax for Selecting and Highlighting the entire
Column(2)?

ActiveDocument.Tables(1).Columns(2).Select

But watch out for merged cells...

--

Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
[email protected]
Word MVP site: http://www.word.mvps.org
 
Top