Hey All,

I have a table that is 5 columns wide by x rows long and would like to get
the string out of the cell which can be the intersection of any row between 2
and x and the first column. Thank you very much.

Tim

Re: Get a value from a Table by Doug

Doug
Mon Jul 30 19:49:19 CDT 2007

Dim myrange as Range
Dim i as Long
Set myrange ActiveDocument.Tables(1).Cell(i, 1).Range
myrange.End = myrange.End - 1
MsgBox myrange.Text

myrange.Text will contain a string that is the contents of the first cell in
row i in the table.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Tim" <Tim@discussions.microsoft.com> wrote in message
news:414CB1F2-FA22-4BB5-AB14-CD3E57741635@microsoft.com...
> Hey All,
>
> I have a table that is 5 columns wide by x rows long and would like to get
> the string out of the cell which can be the intersection of any row
> between 2
> and x and the first column. Thank you very much.
>
> Tim



Re: Get a value from a Table by Tim

Tim
Tue Jul 31 06:12:00 CDT 2007

That works great. Thank you very much.

Tim

"Doug Robbins - Word MVP" wrote:

> Dim myrange as Range
> Dim i as Long
> Set myrange ActiveDocument.Tables(1).Cell(i, 1).Range
> myrange.End = myrange.End - 1
> MsgBox myrange.Text
>
> myrange.Text will contain a string that is the contents of the first cell in
> row i in the table.
>
> --
> Hope this helps.
>
> Please reply to the newsgroup unless you wish to avail yourself of my
> services on a paid consulting basis.
>
> Doug Robbins - Word MVP
>
> "Tim" <Tim@discussions.microsoft.com> wrote in message
> news:414CB1F2-FA22-4BB5-AB14-CD3E57741635@microsoft.com...
> > Hey All,
> >
> > I have a table that is 5 columns wide by x rows long and would like to get
> > the string out of the cell which can be the intersection of any row
> > between 2
> > and x and the first column. Thank you very much.
> >
> > Tim
>
>
>