That will include the end of cell marker in myString. To exclude it, use
Dim myrange as Range
Set myrange = ActiveDocument.Tables(1).Cell(2, 2).Range
myrange.End = myrange.End - 1
MsgBox myrange

Signature
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
> Found it in a earlier discussion - must be my bad search technique
>
[quoted text clipped - 7 lines]
>> The value of cell (1,1) will determine an action on cell(1,2) of table(1)
>> and the value of Cell (1,1) needs to be displayed in a msgbox.
JerryMB - 20 Jan 2006 02:13 GMT
Thanks Doug that is cleaner than the method I used -- Basicly
strMystr2= Mid(strMystr,1,(Len(strMystr)-2)

Signature
JerryB
> That will include the end of cell marker in myString. To exclude it, use
>
[quoted text clipped - 14 lines]
> >> The value of cell (1,1) will determine an action on cell(1,2) of table(1)
> >> and the value of Cell (1,1) needs to be displayed in a msgbox.