Hi, AZ,
Manually (without a macro), just put the cursor in the cell, click Insert >
Text Box, and drag a rectangle in the cell. If you check the "Object
anchors" box in Tools > Options > View, you'll be able to see the anchor
symbol whenever the textbox is selected -- although, confusingly, it's to
the left of the actual anchor point so it appears to be in the next cell to
the left.
Trying to program this is extremely infuriating. You have to use the
.Information method of the cell's .Range property to compute the position of
the cell in points from the top left corner of the page, and tell the
.InsertTextBox function the proper Left and Top values to place it inside
the cell. As far as I can tell, the Anchor value of that function is
completely broken.
If you copy the cell contents and paste it into another cell, the textbox
will be duplicated, and the anchor of the duplicate will be in the new cell.
This is true whether you do it manually or by code such as
With ActiveDocument.Tables(1)
.Cell(1, 1).Range.Copy
.Cell(2, 3).Range.Paste
End With

Signature
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://www.mvps.org/word
> Thanks Jay,
>
[quoted text clipped - 50 lines]
>>
>> .