Nick,
You are still not very clear. For example, what does this mean?
<"I have a table which has none constant rows"
and this
> Its has about 14 tables cells per row
Do you mean "nine" rows and 14 cells or columns per row?
Again this is just a simplistic example, but if you want to look at the
result of a single formfield in a table cell, compare it to something and
then change it based on that comparison you could use something like:
Sub ScratchMacro()
Dim oCell As Cell
For Each oCell In ActiveDocument.Tables(1).Range.Cells
If oCell.Range.FormFields(1).Result <> "Greg" Then
oCell.Range.FormFields(1).Result = "Greg"
End If
Next
End Sub

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> Sorry Greg if it wasnt too clear
>
[quoted text clipped - 4 lines]
>
> I have a table which has none constant rows
> I basically want to
>
[quoted text clipped - 76 lines]
>>>
>>> Yours stupidly