Last Columns in Tables

S

Sally

Hi. I am using MS WORD XP. I have a file full of many
tables separated by paragraphs. The number of columns in
the tables varies. I want to do a search for something in
certain columns, and when the search finds a particular
thing (such as a specific word or number), select the
entire column and then extend the selection to the end of
the table, that is, the last column. Holding down the
Shift key only expands the selection to the next columnn
to the right. I want to extend the selection to all the
columns to the right of the selection (which vary in
number according to number of columns in the table). Can
this be done? Thanks.
 
D

Doug Robbins - Word MVP

Use a macro containing the following code:

Dim myrange As Range
Set myrange = Selection.Columns(1).Cells(1).Range
myrange.End = Selection.Tables(1).Range.End
myrange.Select


--
Please post any further questions or followup to the newsgroups for the
benefit of others who may be interested. Unsolicited questions forwarded
directly to me will only be answered on a paid consulting basis.

Hope this helps
Doug Robbins - Word MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top