Hi!
I'm tryn to figure out how to use offset in a word table, to get some values out of the cells.
Since this doesn't work:
For Each oCell In AppWord.ActiveDocument.Tables(1).Columns(2).Cells
If oCell.Range.Text = Chr(13) & Chr(7) Then
MsgBox "Cell(" & oCell.Row.Index & "," & oCell.Column.Index & ") is empty."
oCell.Offset(0, -1).Range.Text = oCell.Offset(-1, -1).Range.Text + 1
oCell.Range.Text = "Certifikat2"
The red part doesn't work of course 
The green one does.
Does anyone know what is used in word for offesting from the cell instead of .Offset?
Thanks
Bookmarks