try this one
VB Code:
Dim t As Table
Set t = ActiveDocument.tables(1)
For i = 2 To t.Rows.Count
If Not t.Cell(i, 1).Range.Hyperlinks.Count = 0 Then
b = t.Cell(i, 1).Range.Hyperlinks(1).Name
t.Cell(i, 3).Select
Selection.Collapse Direction:=wdCollapseStart
Selection.InsertCrossReference ReferenceType:="Bookmark", ReferenceKind:= _
wdPageNumber, ReferenceItem:=b, InsertAsHyperlink:=True, _
IncludePosition:=False
End If
Next
pete
edit: your sample show the 3rd column as centre aligned, to do tha add this to the end of above code
VB Code:
t.Columns(3).Select
Selection.ParagraphFormat.Alignment = wdAlignParagraphCenter